Created
September 10, 2020 03:29
-
-
Save dev4Fun/4617ea953ca17e654ee8d7cf8c0283f4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from bot import AutoLikeBot | |
from filter import MyCustomFilter | |
from strategy import RunForeverWithBreaks | |
... | |
if __name__ == '__main__': | |
with AutoLikeBot(configure_chrome_driver(), | |
post_filter=MyCustomFilter(ignore_tags=config.IGNORE_TAGS), | |
running_strategy=RunForeverWithBreaks(200)) as bot: | |
bot.like_from_explore() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment