https://github.com/iamatulsingh/pinterest-image-scrap
This python (3.7) program scrap data from pinterest without official API.
https://github.com/iamatulsingh/pinterest-image-scrap
pinterest pinterest-image-downloader pinterest-image-scraper pinterest-scraper python scraper
Last synced: 7 months ago
JSON representation
This python (3.7) program scrap data from pinterest without official API.
- Host: GitHub
- URL: https://github.com/iamatulsingh/pinterest-image-scrap
- Owner: iamatulsingh
- License: mit
- Created: 2018-08-17T08:21:02.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-08-02T20:16:14.000Z (almost 2 years ago)
- Last Synced: 2024-08-02T23:02:35.902Z (almost 2 years ago)
- Topics: pinterest, pinterest-image-downloader, pinterest-image-scraper, pinterest-scraper, python, scraper
- Language: Python
- Homepage:
- Size: 56.6 KB
- Stars: 62
- Watchers: 2
- Forks: 11
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pinterest-image-scrap
[](https://www.python.org/)
[](https://www.crummy.com/software/BeautifulSoup/bs4/doc/)
## UPDATE: You can now use my new python library pinscrape to do the same thing with no extra step. You can install it using `pip install pinscrape`. For more details, visit pinscrape
This python3 program scrap data from pinterest without official API.
>NOTE: It will definetly take some memory (depends on the size of images) to download it.
## install all required libraries using following command from your project directory
```bash
pip install -r requirements.txt
```
## how to run
### 1) directly
```bash
python pinterest.py
```
### 2) using import
```python
from pinterest import PinterestImageScraper
p_scraper = PinterestImageScraper()
is_downloaded = p_scraper.make_ready("messi")
```