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

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.

Awesome Lists containing this project

README

          

# pinterest-image-scrap
[![built with Python](https://img.shields.io/badge/Made%20with-Python3-red?style=for-the-badge&logo=python)](https://www.python.org/)
[![built with BeautifulSoup](https://img.shields.io/badge/Made%20with-BeautifulSoup-blue?style=for-the-badge&logo=bs4)](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")
```