ohld / igbot

🐙 Free scripts, bots and Python API wrapper. Get free followers with our auto like, auto follow and other scripts!
https://hikerapi.com/p/N2P6iqiM
Apache License 2.0
4.71k stars 1.47k forks source link

TypeError: like_users() got an unexpected keyword argument 'nlike' #801

Closed streamel closed 5 years ago

streamel commented 5 years ago

Nice feature, but not working at now

python ./like_users_from_file.py -u user1 -p pass ./konk_users.csv users

2019-01-29 15:27:57,338 - INFO - Instabot Started Found 229608 users in file. 2019-01-29 15:27:57,574 - INFO - Logged-in successfully as 'user1' using the cookie! Traceback (most recent call last): File "./like_users_from_file.py", line 34, in bot.like_users(users_to_like, nlike=1) TypeError: like_users() got an unexpected keyword argument 'nlike' 2019-01-29 15:27:58,154 - INFO - Bot stopped. Worked: 1:20:27.282311 2019-01-29 15:27:58,155 - INFO - Total likes: 3/1000 2019-01-29 15:27:58,155 - INFO - Total requests: 39

streamel commented 5 years ago

resolve it ` diff --git a/examples/like_users_from_file.py b/examples/like_users_from_file.py index ab72735..c3ec8e9 100644 --- a/examples/like_users_from_file.py +++ b/examples/like_users_from_file.py @@ -31,4 +31,4 @@ else: bot.login(username=args.u, password=args.p, proxy=args.proxy)

-bot.like_users(users_to_like, nlike=1) +bot.like_users(users_to_like, nlikes=1)`

ohld commented 5 years ago

Great! Can you please make a pull request with these changes?

stale[bot] commented 5 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.