💻 Library for instagram.com automation.
🤝 Auto-follow unknown users, during liking, from locations or tags.
📊 Get statistic of any public account.
- Python 3
- ChromeDriver for headless web-surfing
-
Example of using package for liking specific user:
import os from insta_browser import browser br = browser.Browser( debug=True,cookie_path=os.path.join('var', 'cookies'), log_path=os.path.join('var', 'logs'), db_path=os.path.join('var', 'db'), exclude=os.path.join('var', 'exclude.txt'), auto_follow=True ) try: br.auth('YOUR_INSTA_LOGIN', 'YOUR_INSTA_PASSWORD') br.process_user('al_kricha') print(br.get_summary()) finally: br.close_all()
Other examples can be seen in my repository: insta_bot