Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bboymega/instafollowback
Checking Accounts that are not following back on Instagram with account dumped file HTML
https://github.com/bboymega/instafollowback
followers followers-check followers-instagram followers-scraper instagram python script scripts social-media social-network-analysis
Last synced: 2 months ago
JSON representation
Checking Accounts that are not following back on Instagram with account dumped file HTML
- Host: GitHub
- URL: https://github.com/bboymega/instafollowback
- Owner: bboymega
- License: mit
- Created: 2022-10-14T19:17:45.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-01T08:19:28.000Z (about 2 years ago)
- Last Synced: 2023-11-28T22:33:19.565Z (about 1 year ago)
- Topics: followers, followers-check, followers-instagram, followers-scraper, instagram, python, script, scripts, social-media, social-network-analysis
- Language: Python
- Homepage:
- Size: 365 KB
- Stars: 10
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# InstaFollowBack
Checking Accounts that are not following back on Instagram with account dumped file HTMLIt use local HTML file dumped from Instagram "Request Download" instead of direct loggin the account to avoid getting banned.
# To use this script a local copy of Instagram account data is required.
1) Log in your Instagram account with browser
2) Go to Settings > Privacy and Security > Data Download > Request Download
3) Unzip the dumped File and navigate to followers_and_following.
```
followers.html
following.html
```This script compares the difference between followers.html and following.html for checking accounts that are not following back.
# Example
```
instafollowback.py -i /path/to/following.html -e /path/to/followers.html
```
The script will print the account names that are not following back.# Output
![image](output.png)# Help
```
usage: instafollowback.py [-h] [-i FOLLOWING_FILE] [-e FOLLOWER_FILE]
optional arguments:
-h, --help show this help message and exit
-i FOLLOWING_FILE, --following FOLLOWING_FILE
Following List Html Dump
-e FOLLOWER_FILE, --follower FOLLOWER_FILE
Followers List Html Dump
```
# Front-end
Front-end webpage of this project is available at InstaFollowingBack-Web