meetmangukiya / instagram-scraper
- понедельник, 25 июня 2018 г. в 00:15:00
Python
Scrape the Instagram frontend. Inspired from twitter-scrapper by @kennethreitz .
This scraper uses requests_html
which requires python 3.6 or higher runtime.
pip install -r requirements.txt
from instagram_scraper import scrape_instagram
for url, caption, hashtags, mentions in scrape_instagram(['quotes', 'meet'], 5):
print(url, caption, hashtags, mentions)
python3 instagram_scraper.py --tags software bugs --count 50