Skip to content

๐Ÿ“ธ an Instagram tracker that logs any changes to an Instagram account (followers, following, posts, and bio)

License

Notifications You must be signed in to change notification settings

ibnaleem/instatracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

25 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation


Logo

InstaTracker

๐Ÿ“ธ an Instagram tracker that logs any changes to an Instagram account (followers, following, posts, and bio)

Report Bugs


proof of concept

python3 main.py -h
usage: Instagram Tracker [-h] -u USERNAME

๐Ÿ“ธ an Instagram tracker that logs any changes to an Instagram account
(followers, following, posts, and bio)

options:
  -h, --help            show this help message and exit
  -u USERNAME, --username USERNAME
                        The username of the account to track

๐Ÿค Contribute: https://github.com/ibnaleem/instatracker

Important

You must login to your Instagram account in order to properly scrape someone else's Instagram account. This is due to Instagram blocking HTTPS GET requests from unauthenticated cookies. Your login information is never stored. See more here and here.

Tip

You can always create/use an alt-account for the interative login.

Installation

Clone this repository:

$ git clone https://github.com/ibnaleem/instatracker.git

Install dependencies:

$ pip install -r requirements.txt

Set user & passwd field on line 56

self.bot.login(user="YOUR INSTAGRAM USERNAME", passwd="YOUR INSTAGRAM PASSWORD") # this allows us to access & scrape Instagram.

Run the script

$ python3 main.py -u USERNAME

Automated Logging

InstaTracker not only displays all modifications an Instagram account makes directly to the terminal (e.g., USERNAME has unfollowed 1 person), but it also records these changes in a text file, including the date and time.

------2024-06-30 01:01:13.659694+00:00------
johndoe has 100
johndoe is following 100 people
johndoe has 0 posts
johndoe has the following bio: this is my biography
------2024-06-31 02:03:15.761715+00:00------
johndoe has lost 2 followers (100 followers --> 98 followers)
------2024-06-31 05:03:15.761715+00:00------
johndoe has gained 5 followers (98 followers --> 103 followers)
...

This script checks for any changes every 5 minutes because Instagram's firewall starts blocking requests that are sent too quickly. You can manually update this here, but do not be surprised if the script stops working.

Built With

LICENSE

This repository is under the MIT License

Created By

Ibn Aleem

Contributing

I welcome contributions from the community and appreciate the time and effort put into making InstaTracker better. To contribute, please follow the guidelines and steps outlined below:

Note: Your pull request will be closed if you do not specify the changes you've made.

Fork the Repository

Start by forking this repository. You can do this by clicking on the "Fork" button located at the top right corner of the GitHub page. This will create a personal copy of the repository under your own GitHub account.

Clone the Repository

Next, clone the forked repository to your local machine using the following command:

$ git clone https://github.com/yourusername/instatracker.git

Navigate to the cloned directory:

$ cd instatracker

Create a New Branch

Before making any changes, it's recommended to create a new branch. This ensures that your changes won't interfere with other contributions and keeps the main branch clean. Use the following command to create and switch to a new branch:

$ git checkout -b branch-name

Make the Desired Changes

Now, you can proceed to make your desired changes to the project. Whether it's fixing bugs, adding new features, improving documentation, or optimising code, your efforts will be instrumental in enhancing the project.

Commit and Push Changes

Once you have made the necessary changes, commit your work using the following commands:

$ git add .
$ git commit -m "Your commit message"

Push the changes to your forked repository:

$ git push origin branch-name

Submit a Pull Request

Head over to the original repository on GitHub and go to the "Pull requests" tab.

  1. Click on the "New pull request" button.
  2. Select your forked repository and the branch containing your changes.
  3. Provide a clear and informative title for your pull request, and use the description box to explain the modifications you have made. Your pull request will be closed if you do not specify the changes you've made.
  4. Finally, click on the "Create pull request" button to submit your changes.
2024 7EC0 23F2 769E 6618  1C0F 581B 4A2A 862B BADE

GitHub Opensource GitHub Maintained Last Commit Commit Activity Issues Forks