Advertisement
Guest User

Quickstart

a guest
Feb 14th, 2019
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. """
  2. This template is written by @loopypanda
  3. What does this quickstart script aim to do?
  4. - My settings is for running InstaPY 24/7 with approximately 1400
  5. follows/day - 1400 unfollows/day running follow until reaches 7500 and than
  6. switch to unfollow until reaches 0.
  7. """
  8.  
  9. from instapy import InstaPy
  10. from instapy.util import smart_run
  11.  
  12. # get a session!
  13. session = InstaPy(username='', password='')
  14.  
  15. # let's go! :>
  16. with smart_run(session):
  17. # general settings
  18.  
  19. # session.set_relationship_bounds(enabled=True,
  20. # delimit_by_numbers=False, max_followers=12000, max_following=4500,
  21. # min_followers=35, min_following=35)
  22. # session.set_user_interact(amount=2, randomize=True, percentage=100,
  23. # media='Photo')
  24. session.set_do_follow(enabled=True, percentage=100)
  25. session.set_do_like(enabled=True, percentage=100)
  26. """# session.set_comments(["Heat!!!", "Sick!!!"])
  27. # session.set_do_comment(enabled=False, percentage=80)
  28. # session.set_user_interact(amount=2, randomize=True, percentage=100,
  29. # media='Photo')"""
  30.  
  31. # activity
  32.  
  33. session.unfollow_users(amount=1000, nonFollowers=True, style="RANDOM", unfollow_after=42*60*60, sleep_delay=655)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement