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.69k stars 1.47k forks source link

[BUG] - like_hashtag is not working, stuck after 2-4%. #1395

Closed hamaad-latif closed 4 years ago

hamaad-latif commented 4 years ago

Before submitting an issue, make sure you have:

Which example file are you using?

like_hashtags.py

Describe your Question/Issue:

I am trying to run like_hashtags.py this example but it stuck between 2-4% and it's taking a lot of time.


Paste the output of python -V here: image

Code you are using:

""" instabot example

Workflow:
    Like last images with hashtag.

"""

import argparse import os import sys

sys.path.append(os.path.join(sys.path[0], "../")) from instabot import Bot # noqa: E402

parser = argparse.ArgumentParser(add_help=True) parser.add_argument("-u", type=str, help="username") parser.add_argument("-p", type=str, help="password") parser.add_argument("-proxy", type=str, help="proxy") parser.add_argument("hashtags", type=str, nargs="+", help="hashtags") args = parser.parse_args()

bot = Bot() bot.login(username=args.u, password=args.p, proxy=args.proxy)

for hashtag in args.hashtags: bot.like_hashtag(hashtag)

Error/Debug Log:

CMD Stuck
duplicate-issues[bot] commented 4 years ago

Hey @gigaByte404,

We did a quick check and this issue looks very darn similar to

This could be a coincidence, but if any of these issues solves your problem then I did a good job :smile:

If not, the maintainers will get to this issue shortly.

Cheers, Your Friendly Neighborhood ProBot