Advertisement
Guest User

Untitled

a guest
Nov 18th, 2018
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. """
  2. This template is written by @Tachenz
  3. What does this quickstart script aim to do?
  4. - Interact with user followers, liking 3 pictures, doing 1-2 comment - and 25% chance of follow (ratios which work the best for my account)
  5. NOTES:
  6. - This is used in combination with putting a 40 sec sleep delay after every like the script does. It runs 24/7 at rather slower speed, but without problems (so far).
  7. """
  8.  
  9.  
  10. from instapy import InstaPy
  11. from instapy.util import smart_run
  12.  
  13.  
  14.  
  15. # get a session!
  16. session = InstaPy(username='Username1', password='Password1')
  17.  
  18.  
  19. # let's go! :>
  20. with smart_run(session):
  21. # settings
  22. session.set_user_interact(amount=3, randomize=True, percentage=100, media='Photo')
  23. session.set_relationship_bounds (enabled=True,
  24. potency_ratio=None,
  25. delimit_by_numbers=True,
  26. max_followers=3000,
  27. max_following=900,
  28. min_followers=50,
  29. min_following=50)
  30. session.set_simulation(enabled=False)
  31. session.set_do_like(enabled=True, percentage=100)
  32. session.set_ignore_users([])
  33. session.set_do_comment(enabled=True, percentage=35)
  34. session.set_do_follow(enabled=True, percentage=25, times=1)
  35. session.set_comments([])
  36. session.set_ignore_if_contains([])
  37. session.set_action_delays(enabled=True, like=40)
  38.  
  39. # activity
  40. session.interact_user_followers([], amount=340)
  41.  
  42.  
  43.  
  44. """
  45. -- REVIEWS --
  46. @Andercorp:
  47. - This would probably be the best temp for new accounts to start slowly and gently and then as your account gather IG authority, you could put some more power to your temp/bot...
  48. @uluQulu:
  49. - @Tachenz, the values in your script took my attention, it will be very good for new starters, as @Andercorp said. Stunning!
  50. """
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement