Skip to content
This repository has been archived by the owner on Jan 11, 2022. It is now read-only.

Scrape the Instagram frontend. Inspired from twitter-scraper by @kennethreitz.

License

Notifications You must be signed in to change notification settings

meetmangukiya/instagram-scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Instagram-Scraper

Installation

This scraper uses requests_html which requires python 3.6 or higher runtime.

pip install -r requirements.txt

Usage

As library

from instagram_scraper import scrape_instagram

for url, caption, hashtags, mentions in scrape_instagram(['quotes', 'meet'], 5):
    print(url, caption, hashtags, mentions)

As script

python3 instagram_scraper.py --tags software bugs --count 50