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

https://github.com/yfe404/instagram-scraping

Python script to scrap deskgram (Deskgram is a desktop version of Instagram)
https://github.com/yfe404/instagram-scraping

instagram instagram-clone instagram-photos scraper scraping scraping-websites scrapper

Last synced: 3 months ago
JSON representation

Python script to scrap deskgram (Deskgram is a desktop version of Instagram)

Awesome Lists containing this project

README

          

* Instagram-Scraping
Python script to scrap an entire profile from instagram (using Deskgram). Download the images, the captions or both in only one command!

** Usage
Scrap all the photos and captions from an instagram account with just its username:

#+BEGIN_SRC sh
Usage: main.py [OPTIONS]

Scrap the photos and captions from the posts of a single user

Options:
--images / --no-images Scrap also images.
--captions / --no-captions Scrap also captions.
-u, --user TEXT The account to scrap. [required]
-n, --number INTEGER Number of posts to scrap. (newer posts are
scraped first).
--help Show this message and exit.
#+END_SRC

Examples:
- Download all images AND captions from account USER:
#+BEGIN_SRC sh
python main.py --user USER
#+END_SRC

- Download images only from account USER:
#+BEGIN_SRC sh
python main.py --user USER --no-captions
#+END_SRC

- Download captions only from account USER:
#+BEGIN_SRC sh
python main.py --user USER --no-images
#+END_SRC

- Print help:
#+BEGIN_SRC sh
python main.py --help
#+END_SRC