All Projects β†’ kirsle β†’ follow-sync

kirsle / follow-sync

Licence: GPL-2.0 license
Re-synchronize your Instagram following list (or: unfollow everyone who doesn't follow you back)

Programming Languages

go
31211 projects - #10 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to follow-sync

Socialmanagertools Docs
πŸ“š Documentation of Social Manager Tools
Stars: ✭ 151 (+738.89%)
Mutual labels:  instagram-api
Instagram Proxy Api
CORS compliant API to access Instagram's public data
Stars: ✭ 245 (+1261.11%)
Mutual labels:  instagram-api
Instagram-for-macOS
A native, full-featured Instagram client for macOS.
Stars: ✭ 30 (+66.67%)
Mutual labels:  instagram-api
Instagram private api
A Python library to access Instagram's private API.
Stars: ✭ 2,273 (+12527.78%)
Mutual labels:  instagram-api
Instagram Api Python
Unofficial instagram API, give you access to ALL instagram features (like, follow, upload photo and video and etc)! Write on python.
Stars: ✭ 2,357 (+12994.44%)
Mutual labels:  instagram-api
BeRude
A fun tool that lists all users who don't follow you back on GitHub😁
Stars: ✭ 33 (+83.33%)
Mutual labels:  unfollow
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
Stars: ✭ 149 (+727.78%)
Mutual labels:  instagram-api
Instagram-Auto-Pilot
Automate common Instagram activities such as following, unfollowing, commenting and reposting images from instagram accounts.
Stars: ✭ 50 (+177.78%)
Mutual labels:  instagram-api
Android Mvvm Architecture
Sample MVVM project uses instagram API
Stars: ✭ 217 (+1105.56%)
Mutual labels:  instagram-api
social-post-api
Social Media API: Automate Posting and Analytics to Social Networks like Instagram, TikTok, Twitter, Facebook, LinkedIn, Reddit, YouTube, and Telegram
Stars: ✭ 38 (+111.11%)
Mutual labels:  instagram-api
Swiftyinsta
Instagram Private API Swift
Stars: ✭ 165 (+816.67%)
Mutual labels:  instagram-api
Instagram Php Scraper
Get account information, photos, videos, stories and comments.
Stars: ✭ 2,490 (+13733.33%)
Mutual labels:  instagram-api
IG Automation Bot
Python tool for Instagram direct message automation with scheduler, quota management, user blacklist & autonomous user scrapping. Easily configurable through Yaml config files! Not maintained anymore in favor of IGopher (https://github.com/hbollon/IGopher)
Stars: ✭ 18 (+0%)
Mutual labels:  instagram-api
Instagrapi
Fast and effective Instagram Private API wrapper
Stars: ✭ 157 (+772.22%)
Mutual labels:  instagram-api
Unfollow-Twitter-Users
This script will unfollow any twitter users who are not following you back. With the option to skip desired usernames.
Stars: ✭ 26 (+44.44%)
Mutual labels:  unfollow
Instabot.rb
An instagram bot works without instagram api, only needs your username and password. written in ruby
Stars: ✭ 149 (+727.78%)
Mutual labels:  instagram-api
Github-Follow-Bot
A bot done with python3 to follow and unfollow users in GitHub2020
Stars: ✭ 46 (+155.56%)
Mutual labels:  unfollow
inshackle-bot
Get unlimited followers on Instagram for free . Bot by cyber kallan
Stars: ✭ 448 (+2388.89%)
Mutual labels:  unfollow
instagram
Php instagram library. With this library, you can use many of the same features in the mobile application.
Stars: ✭ 45 (+150%)
Mutual labels:  instagram-api
insta-story
πŸ€– πŸ“· Instagram Story Downloader Anonymously - PHP
Stars: ✭ 25 (+38.89%)
Mutual labels:  instagram-api

Follow Sync

Follow Sync is a little Go program that helps you synchronize your Instagram "Following" list. Basically, it can unfollow all profiles that are not following you back.

🚨 NOTICE: This project is no longer maintained.

I no longer use Instagram and therefore have no way to test or maintain any fixes to this program. It uses an upstream library that uses Instagram's proprietary API (reverse-engineering what the official app does, to get to features their public API doesn't allow/to circumvent all of that nonsense).

The proprietary API is subject to change (and they probably change it on purpose now and again because they don't want people to use it) so this program may break periodically. If upstream ahmdrz/goinsta continues to work, this should too with a rebuild from source.

Fork this project if you need to maintain it other than that.

If you go get to install this it should probably (try to) build with the latest goinsta library which may work at any given time.

--Kirsle

Screenshot

It uses the Instagram unofficial API (ahmdrz/goinsta) to log in to your account (pretending that it's an Android device), compares your followers and following lists, and provides a summary and a choice of action: go ahead and unfollow the users who don't follow you back, or exit and you can review the data on your own.

This program creates a CSV file named follower-lists-$USERNAME.csv that contains your full list, so you can examine what's on your lists or as a backup in case you want to know who you unfollowed later.

$ go install -u github.com/kirsle/follow-sync
$ follow-sync [-wait DELAY=60]

By default, this program waits 60 seconds between each unfollow. This is the safest rate to stay under Instagram's rate limit, but you can override it if needed. See Caveats below.

Program Usage

Just run the follow-sync executable. It will prompt for your username and password (non-echoed output), collect your friend lists and compare them, and print out a summary.

At this point you can open the follower-lists-$USERNAME.csv in your favorite spreadsheet program if you want to inspect the Following and Follower lists.

The program will prompt for final verification before it goes ahead and begins unfollowing users.

Caveats

Occasionally, the Instagram API can get pretty fussy with rate limits. Most API functions this program calls will panic if it gets an error. No big deal: you can just wait a few minutes and run the program again and it should pick up where it left off.

The safest rate limit according to what documentation I could find is to not unfollow more than 60 profiles per hour. As such, this program has a 60 second delay between each unfollow action by default.

I've seen with shorter delays, such as 2 seconds, that I was able to unfollow between 600 and 900 users before the API rate limited me.

To change the delay between unfollows, use the -wait command line option. For example:

$ follow-sync -wait 2

Distributing

The shell script dist.sh can cross-compile the binary for multiple platforms.

Full list of examples for the platforms I export to:

./dist.sh linux 64
./dist.sh linux 32

./dist.sh windows 64
./dist.sh windows 32

./dist.sh darwin 64

Distributables are put into appropriately-named subdirectories of the dist/ folder, and zipped up along with other project metafiles (README, etc.)

License

Follow-Sync: Instagram Follower Synchronization Tool
Copyright (C) 2017 Noah Petherbridge

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].