This Python script identifies users who don't follow you back on Instagram and automatically unfollows them. It uses the instaloader
module to interact with Instagram.
- Python 3.x
instaloader
modulerequests
module
- Clone the repository or download the script.
- Install the required Python modules:
pip install instaloader requests```
- Set your Instagram username and password in the script:
INSTAGRAM_USERNAME = "your_username"
INSTAGRAM_PASSWORD = "your_password"
- Run the script:
python main.py
- The script will:
- Log in to Instagram.
- Retrieve the list of followers and followees.
- Identify users who don't follow you back.
- Unfollow users who don't follow you back, with a 30-second delay between each unfollow action to avoid rate limiting.
This project is licensed under the MIT License - see the LICENSE file for details.