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)
- Host: GitHub
- URL: https://github.com/yfe404/instagram-scraping
- Owner: yfe404
- License: gpl-3.0
- Created: 2018-05-26T19:04:24.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-04T10:37:03.000Z (over 6 years ago)
- Last Synced: 2025-04-10T02:58:19.407Z (6 months ago)
- Topics: instagram, instagram-clone, instagram-photos, scraper, scraping, scraping-websites, scrapper
- Language: Python
- Size: 21.5 KB
- Stars: 10
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
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_SRCExamples:
- 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