Invalid syntax on quickstart.py, line 7
oisouole opened this issue · 0 comments
oisouole commented
When I set "Follow User Followers" (all other options turned off) and click on "Run" I get:
Error: File "quickstart.py", line 7 session.set_user_interact(amount=, randomize=False, percentage=) ^ SyntaxError: invalid syntax
This is my quickstart.py:
from instapy import InstaPy
session = InstaPy(username='myusernamegoeshere', password='mypasswordgoeshere')
session.login()
session.set_user_interact(amount=, randomize=False, percentage=)
session.follow_user_followers(['hereisthecorrectusername'], amount=500, sleep_delay=7, randomize=True, interact=True)
session.unfollow_users(amount=, sleep_delay=)
session.end()
Only option available after error: End Session
What should I do?