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
(Full source code available upon request β email me at [email protected] or contact me on Upwork)
β
Logs in to Instagram
β
Bing search automation with pagination
β
Profile scraping (Name, Bio, Posts, Followers, Following)
β
Email detection from bio
β
CSV export
query = '' search_url = f"https://www.bing.com/search?q={query}" driver.get(search_url)
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)