• Stars
    star
    381
  • Rank 112,502 (Top 3 %)
  • Language
    Python
  • License
    MIT License
  • Created over 7 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

An Instagram script to unfollow accounts who doesn't follow-you-back

Insta Unfollower

An Instagram script, allowing you to automatically unfollow accounts you are following but that doesn't follow you back. Without using the Instagram API.

Installation

  • With Docker

Clone repository, cd into directory then run:

docker build -t tuxity/insta-unfollower .
docker run -d -v $(pwd)/cache:/usr/src/insta-unfollower/cache --env INSTA_USERNAME=myusername --env INSTA_PASSWORD=mypassword tuxity/insta-unfollower
  • Without Docker
INSTA_USERNAME=myusername INSTA_PASSWORD=mypassword python3 insta-unfollower.py

Or

python3 insta-unfollower.py USERNAME PASSWORD

Roadmap

  • Username whitelist.
  • Better flow for calculating time between requests to avoid ban.
  • Avoid re-log on instagram everytime when we run the script done
  • Keep followers and following lists in cache to speedup execution done