A tool to analyze Instagram information exports
By M4elstr0m.
InstagramExportReader -> InstagramER -> instagramer 😎
- This software does not interact directly with Instagram and is purely using local ressources (your .zip export) to analyze data.
- You can check for updates anytime using
instagramer --check-update. It does not check for update on start-up for performance concerns - This C# software has been compiled using AOT for maximum runtime performance
Retrieve, process and display these informations from an Instagram export:
- Total users found in the export
- Followers count
- Following count
- Followers/Following rate
- Mutual follows
- Users you don't follow back
- Users not following you back
- Detailed list of every Instagram relations you have
To get the standard helping message
instagramer --helpTo get a complete walkthrough (tutorial mode)
instagramer --tutorialTo get a bunch of useful command examples
instagramer --examples- Download a win-x64 release
- Extract the archive
instagramer in your terminal.
- Move your .exe to a dedicated folder (e.g., C:\Apps\InstagramExportReader)
- Press the Windows Key and type "Env"
- Select Edit the system environment variables
- Click Environment Variables at the bottom
- Under "User variables" (top scrollable panel), find "Path", select it, and click Edit
- Click New and paste the path to your folder: (e.g., C:\Apps\InstagramExportReader)
- Restart your terminal
Now, instagramer --help will work instantly from anywhere in your Windows terminal!
- Download a linux-x64 release
- Extract the archive
- Run
sudo ./install.sh
At the end, the install script will verify your installation by running instagramer --help
This script is basically all the build commands below gathered in a single file
./publish.ps1dotnet publish -r win-x64 -c Releasedocker run --rm -v "${PWD}:/app" -w /app mcr.microsoft.com/dotnet/sdk:10.0-preview `
bash -c "apt update && apt install -y clang zlib1g-dev && dotnet publish -r linux-x64 -c Release"
- Dynamic column number
- Split ProcessTargets() and its progress bar UI
- Flag to export to JSON (counters only)