Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/swag666baby/pinterest-dl
- Owner: Swag666baby
- License: mit
- Created: 2023-12-19T19:46:01.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-19T20:06:34.000Z (about 1 year ago)
- Last Synced: 2024-11-16T03:13:54.892Z (about 1 month ago)
- Topics: downloader, free, image, library, npm, pinterest, pinterest-downloader, scraper, search-engine, wrapper
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/pinterest-dl
- Size: 8.79 KB
- Stars: 14
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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()
```