This Python script helps you analyze your Instagram connections by comparing your followers and following lists. It identifies who follows you back and who doesn't.
- Lists all your Instagram connections and marks who follows you back.
- Identifies users you follow who do not follow you back.
- Python 3.1 or higher
To obtain the necessary JSON files from Instagram:
- Open Instagram on your web browser.
- Go to Settings > Privacy and Security.
- Scroll down to Data Download and click Request Download.
- Choose JSON as the format and submit the request.
- Once you receive an email from Instagram, download the ZIP file and extract it.
- Locate
followers_1.json
(followers list) andfollowing.json
(following list) inside the extracted folder.
- Clone this repository or download the script.
- Ensure you have the required JSON files:
followers_1.json
(Contains your followers list)following.json
(Contains your following list)
- Place these files inside the
files
directory inside the project.
- Run the script using:
python main.py
- Choose an option:
1
to see all connections (who follows you back and who doesn't).2
to see a list of people who do not follow you back.
1. Show all connections
2. Show Non Followers
Enter Your Choice: 2
People not following you:
❌ : user1
❌ : user2
❌ : user3
- Ensure that your JSON files are correctly formatted.
- The script does not interact with Instagram; you must download your data manually.
This project is licensed under the MIT License.