pinterest-dl
v1.0.1
Published
a library to search and download images from pinterest
Downloads
195
Maintainers
Readme
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
const {search} = require("pinterest-dl");
async function main(){
const data = await search("dog");
console.log(data);
}
main()