https://github.com/mikasuru/instagram-selenium
A simple script to for instagram
https://github.com/mikasuru/instagram-selenium
instagram instagram-api instagram-follower instragram-bot python python-auto python-automation
Last synced: 29 days ago
JSON representation
A simple script to for instagram
- Host: GitHub
- URL: https://github.com/mikasuru/instagram-selenium
- Owner: Mikasuru
- Created: 2025-08-01T09:15:23.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-08-16T01:05:43.000Z (about 2 months ago)
- Last Synced: 2025-08-16T03:38:49.065Z (about 2 months ago)
- Topics: instagram, instagram-api, instagram-follower, instragram-bot, python, python-auto, python-automation
- Language: Python
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Instagram follower scraping
This project is a simple script to scrape Instagram followers using `undetected-chromedriver` and `selenium`, then send the results to a Discord webhook.
> This project was made for fun and learning. The code quality may not be good, but atleast it working.### Prerequisites
You can install all necessary libraries using pip:
```bash
pip install -r requirements.txt
```### Usage
#### 1. Create Session
First, you need to create a session by logging in. The script will open a browser window for you to log into your Instagram account.```bash
python main.py --create-session
```The script will save your login cookies to `selenium_session.json` once you are logged in.
#### 2. Scrape Followers
After creating the session, you can scrape followers using the following command:```bash
python main.py
```You can specify a different username and follower limit with the `-u` and `-l` flags:
```bash
python main.py -u mwkri_xii
```The script will send a Discord notification with the results when it's finished.