ricardojoserf / instagram-followers-bot

A bot for Instagram. You can follow users using a tag or in a specific location, unfollow those who dont follow-you-back, and follow-back those who follow you
477 stars 113 forks source link

Do you still support it? #23

Closed UnixCro closed 3 years ago

UnixCro commented 3 years ago

The project is a bit older, would be sad if you no longer support it

ricardojoserf commented 3 years ago

Hi @UnixCro ! Yes I still support it in the way that if a functionality stops working I will try to fix it when I have time, but I am not planning on adding more functionalities, at least while I don¡t have time for it. I hope that solves your question :)

UnixCro commented 3 years ago

The reason I ask is that unfortunately it doesn't work for me under macOS and when I saw the last year of corrections I was a little clear.

Since I don't have a lot of knowledge about Python and the other stuff I'll show you what comes out with me.

pip3 install -r requirements.txt 

Requirement already satisfied: requests==2.20.0 in /Library/Python/3.8/site-packages (from -r requirements.txt (line 1)) (2.20.0)
Requirement already satisfied: requests_toolbelt==0.8.0 in /Library/Python/3.8/site-packages (from -r requirements.txt (line 2)) (0.8.0)
Requirement already satisfied: urllib3<1.25,>=1.21.1 in /Library/Python/3.8/site-packages (from requests==2.20.0->-r requirements.txt (line 1)) (1.24.3)
Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /Library/Python/3.8/site-packages (from requests==2.20.0->-r requirements.txt (line 1)) (3.0.4)
Requirement already satisfied: idna<2.8,>=2.5 in /Library/Python/3.8/site-packages (from requests==2.20.0->-r requirements.txt (line 1)) (2.7)
Requirement already satisfied: certifi>=2017.**4.17 in /Library/Python/3.8/site-packages (from requests==2.20.0->-r requirements.txt (line 1)) (2020.6.20)
myhome@mypcname instagram-followers-bot % python3.6 main.py

Thanks for an answer

Traceback (most recent call last):
  File "main.py", line 1, in <module>
    import aux_funcs, sys, json, time, random
  File "/Users/myhome/Downloads/instagram-followers-bot/aux_funcs.py", line 1, in <module>
    import sys, json, requests, os
ModuleNotFoundError: No module named 'requests'
ricardojoserf commented 3 years ago

Hi! Could you try this? "pip3 install requests"

UnixCro commented 3 years ago

Yes I have

myhome@mypcname instagram-followers-bot % /usr/bin/pip3 install requests         
Requirement already satisfied: requests in /Library/Python/3.8/site-packages (2.20.0)
Requirement already satisfied: idna<2.8,>=2.5 in /Library/Python/3.8/site-packages (from requests) (2.7)
Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /Library/Python/3.8/site-packages (from requests) (3.0.4)
Requirement already satisfied: urllib3<1.25,>=1.21.1 in /Library/Python/3.8/site-packages (from requests) (1.24.3)
Requirement already satisfied: certifi>=2017.4.17 in /Library/Python/3.8/site-packages (from requests) (2020.6.20)
ricardojoserf commented 3 years ago

Hi, I think you are running the script with Python 3.6 but maybe the installed version of requests is with Python 3.8 Could you try running "pip3.6 install requests" and try again or run the script with "python3" or "python3.8"?

UnixCro commented 3 years ago

Honor man! Very cool it worked right away

myhome@mypcname instagram-followers-bot % pip3.6 install -r requirements.txt                                          
Requirement already satisfied: requests==2.20.0 in /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages (from -r requirements.txt (line 1)) (2.20.0)
Requirement already satisfied: requests_toolbelt==0.8.0 in /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages (from -r requirements.txt (line 2)) (0.8.0)
Requirement already satisfied: idna<2.8,>=2.5 in /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages (from requests==2.20.0->-r requirements.txt (line 1)) (2.7)
Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages (from requests==2.20.0->-r requirements.txt (line 1)) (3.0.4)
Requirement already satisfied: urllib3<1.25,>=1.21.1 in /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages (from requests==2.20.0->-r requirements.txt (line 1)) (1.24.3)
Requirement already satisfied: certifi>=2017.4.17 in /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages (from requests==2.20.0->-r requirements.txt (line 1)) (2020.12.5)

And then it worked

myhome@mypcname instagram-followers-bot % python3.6 main.py                                               
usage: main.py [-h] -u USER -p PASSWORD -o OPTION [-t TARGET] [-i IMAGE]
               [-c CAPTION]
main.py: error: the following arguments are required: -u/--user, -p/--password, -o/--option

If you have the time, you can manage the specified passwords like with "instaloader" so that they are saved, but only the program itself can decrypt them and no other program, otherwise you have to enter your passwords repeatedly. I think that would be great.

I also have the message "(Max val: 100") Can you maybe tell me what that means

Otherwise, thanks for the quick and effective help. Stay healthy

ricardojoserf commented 3 years ago

You are welcome! Feel free to like the repo or follow me :) I think the message means you can follow up to 100 people at the same time. stay healthy too!