https://github.com/kricha/insta_browser
python pypi package for easy parsing/automation instagram.com
https://github.com/kricha/insta_browser
bot insta-crawler instabot instagram pypi pypi-instagram pypi-packages python
Last synced: 5 months ago
JSON representation
python pypi package for easy parsing/automation instagram.com
- Host: GitHub
- URL: https://github.com/kricha/insta_browser
- Owner: kricha
- Created: 2017-06-22T11:44:59.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-06-30T21:42:28.000Z (almost 8 years ago)
- Last Synced: 2025-10-09T21:09:19.757Z (9 months ago)
- Topics: bot, insta-crawler, instabot, instagram, pypi, pypi-instagram, pypi-packages, python
- Language: Python
- Homepage:
- Size: 92.8 KB
- Stars: 22
- Watchers: 4
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Instabrowser
[](https://travis-ci.org/kricha/insta_browser)
[](https://pypi.org/pypi/insta_browser)
💻 Library for instagram.com automation.
♥️ Like instagram feed, username profile, location, tag.
🤝 Auto-follow unknown users, during liking, from locations or tags.
📊 Get statistic of any public account.
### Requirements
* Python 3
* [ChromeDriver](https://sites.google.com/a/chromium.org/chromedriver/downloads) for headless web-surfing
### Examples
* Example of using package for liking specific user:
```python
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](https://github.com/kricha/insta_bot)