Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/swag666baby/pinterest-dl

a library to search and download images from pinterest
https://github.com/swag666baby/pinterest-dl

downloader free image library npm pinterest pinterest-downloader scraper search-engine wrapper

Last synced: 29 days ago
JSON representation

a library to search and download images from pinterest

Awesome Lists containing this project

README

        

# pinterest-dl
[![NPM Version](https://img.shields.io/npm/v/pinterest-dl.svg?maxAge=10)](https://www.npmjs.com/package/pinterest-dl)
[![Npm package yearly downloads](https://badgen.net/npm/dt/pinterest-dl)](https://npmjs.com/package/pinterest-dl)

pinterest-dl is a library that allows you to search and download images from pinterest without any registration or key.

# installation
```
npm install pinterest-dl
```

# example
```javascript
const {search} = require("pinterest-dl");

async function main(){
const data = await search("dog");
console.log(data);
}
main()
```