Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/meetmangukiya/instagram-scraper

Scrape the Instagram frontend. Inspired from twitter-scraper by @kennethreitz.
https://github.com/meetmangukiya/instagram-scraper

client instagram instagram-scraper javascript no-authentication python-3-6 requests-html scraping

Last synced: 3 months ago
JSON representation

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

Awesome Lists containing this project

README

        

# Instagram-Scraper

## Installation

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

```bash
pip install -r requirements.txt
```

## Usage

### As library

```python
from instagram_scraper import scrape_instagram

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

### As script

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