Skip to content

Instantly share code, notes, and snippets.

@dev4Fun
Created September 10, 2020 03:29
Show Gist options
  • Save dev4Fun/4617ea953ca17e654ee8d7cf8c0283f4 to your computer and use it in GitHub Desktop.
Save dev4Fun/4617ea953ca17e654ee8d7cf8c0283f4 to your computer and use it in GitHub Desktop.
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