https://github.com/cecobask/instagram-insights
Use your Instagram data to find out which users are not following you back. Export followers and following user lists in various formats (table, json, yaml). Set sorting criteria and order direction of the results. Limit the number of results to get a quick overview (e.g. top 10)
https://github.com/cecobask/instagram-insights
follow followers go golang instagram instagram-unfollowers unfollow unfollowers
Last synced: 6 months ago
JSON representation
Use your Instagram data to find out which users are not following you back. Export followers and following user lists in various formats (table, json, yaml). Set sorting criteria and order direction of the results. Limit the number of results to get a quick overview (e.g. top 10)
- Host: GitHub
- URL: https://github.com/cecobask/instagram-insights
- Owner: cecobask
- License: mit
- Created: 2023-06-15T20:07:33.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-19T17:14:43.000Z (over 2 years ago)
- Last Synced: 2024-06-21T16:43:07.648Z (about 2 years ago)
- Topics: follow, followers, go, golang, instagram, instagram-unfollowers, unfollow, unfollowers
- Language: Go
- Homepage:
- Size: 500 KB
- Stars: 22
- Watchers: 2
- Forks: 112
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# instagram-insights
Discover various insights from your Instagram data.
[](https://github.com/cecobask/instagram-insights/actions/workflows/quality.yaml)
[](https://codecov.io/gh/cecobask/instagram-insights)
## Use-cases
- Find out which users are not following you back
- Export followers and following user lists in various formats (table, json, yaml)
- Set sorting criteria and order direction of the results
- Limit the number of results to get a quick overview (e.g. top 10)
## Prerequisites
Complete all steps from this section.
### Request to download your Instagram data
You need to get a copy of your Instagram data using the [Data Download](https://www.instagram.com/download/request) tool. This is a manual process that cannot
be automated. Instagram only allows their mobile application and website to perform this. While requesting a download of
your data, select the following options:
- Types of information:
- [x] Followers and following
- Format:
- [x] JSON
- Date range:
- [x] All time
### Prepare your Instagram data
When your Instagram data is ready to be downloaded, you will receive an email notification.
After downloading the zip archive, containing your Instagram data, you will have two options, depending on your use-case:
- [ ] Option 1: [Run the application using GitHub Actions workflow](#run-the-application-using-github-actions-workflow)
- [ ] Option 2: [Run the application on your machine](#run-the-application-on-your-machine)
## Run the application using GitHub Actions workflow
- [ ] Upload the zip file, containing your Instagram data, to a cloud storage service. Afterward, generate a public link to
the archive. The most common cloud storage service is probably Google Drive. Following the steps below will make your
Instagram data archive publicly accessible:
- Right-click your archive and open the `Share` menu
- In the `General access` section use the dropdown menu and select `Anyone with the link`
- Select role `Viewer`
- Use the `Copy link` button to copy the public link to your archive
- [ ] Set up your repository
- Fork the [cecobask/instagram-insights](https://github.com/cecobask/instagram-insights) repository to your account
- Enable the `insights` workflow ([help](https://docs.github.com/en/actions/using-workflows/disabling-and-enabling-a-workflow))
- Create a new repository secret ([help](https://docs.github.com/en/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository)):
- Name: `ARCHIVE_URL`
- Secret: this must be equal to the value of your public archive url (_previously copied_)
- [ ] Run the `insights` workflow ([help](https://docs.github.com/en/actions/using-workflows/manually-running-a-workflow))
- Shortly, check the console output of the workflow for results
## Run the application on your machine
- [ ] Download and install [Git](https://git-scm.com/downloads) + [Go](https://go.dev/doc/install)
- [ ] Clone the repository
- [ ] Build the application: `make build`
- [ ] Add the application to your path
- [ ] Load your Instagram data from a local zip file or cloud storage: `instagram information load `
- [ ] Discover the available commands or browse through the [documentation](docs/instagram.md): `instagram --help`