Guest User

Untitled

a guest
Dec 31st, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. try:
  2. session = InstaPy(username=insta_username, password=insta_password)
  3.  
  4.  
  5. session.login()
  6.  
  7. # set up all the settings
  8. session.set_do_follow(enabled=True, percentage=100, times=2)
  9.  
  10. # do the actual liking
  11. session.like_by_tags(['roadcycling'], amount=5)
  12.  
  13. # end the bot session
  14. session.end()
  15. except:
  16. session.end()
Add Comment
Please, Sign In to add comment