Thanks to visit codestin.com
Credit goes to github.com

Skip to content

A Python automation tool that logs into Instagram, searches profiles via Bing, scrapes public data like bio, followers, and emails, and saves the results. Demo included. Full script available on request.

Notifications You must be signed in to change notification settings

subhanalii/instagram-scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

20 Commits
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸ” Instagram Email Scraper (Bing + Selenium)

This is a Python-based web automation script that:

  • Logs into Instagram using your credentials
  • Uses Bing to search public Instagram profiles of given query
  • Extracts public details from profiles like name, bio, posts, followers, and following
  • Searches bios for public email addresses
  • Saves results to a CSV file

πŸ“½οΈ Demo

Watch the demo

(Full source code available upon request β€” email me at [email protected] or contact me on Upwork)

βš™οΈ Features

βœ… Logs in to Instagram
βœ… Bing search automation with pagination
βœ… Profile scraping (Name, Bio, Posts, Followers, Following)
βœ… Email detection from bio
βœ… CSV export

πŸ“‹ Sample Code

Bing search for Instagram profiles

query = '' search_url = f"https://www.bing.com/search?q={query}" driver.get(search_url)

Login to Instagram

driver.get("https://www.instagram.com/accounts/login/") username_input = driver.find_element(By.NAME, "username") password_input = driver.find_element(By.NAME, "password") username_input.send_keys("your_username") password_input.send_keys("your_password") password_input.send_keys(Keys.ENTER)

About

A Python automation tool that logs into Instagram, searches profiles via Bing, scrapes public data like bio, followers, and emails, and saves the results. Demo included. Full script available on request.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages