ahmadudin / electron-instaPy-GUI

Graphic user interface for https://github.com/timgrossmann/InstaPy
MIT License
267 stars 64 forks source link

Invalid syntax on quickstart.py, line 7 #48

Closed oisouole closed 6 years ago

oisouole commented 6 years ago

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?