Gimenz / 1cak

1cak scraper

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

1cak-scraper

1cak.com Un-Official Api Wrapper

simple unofficial api wrapper for 1cak.com NSFW Post & GIF Video is now supported :)

πŸ‘¨β€πŸ³ Install

npm install github:Gimenz/1cak

πŸ“” Example

const Wancak = require('1cak-scraper')

// support nsfw content, if you provide cookie 
const jancok = new Wancak('cookie');

(async () => {
    try {
	
        // search posts
        const search = await jancok.search('peline di mik');
        console.log(search);

        // random post
        const random = await jancok.shuffle();
        console.log(random);

        // find post by section
        const section = await jancok.section('legendary');
        console.log(section);

        //and manymore 
    } catch (error) {
        console.log(error);
    }
})()

🌳 Dependency

πŸ₯š Credits

πŸ§—β€β™€οΈ Contribution(s) are welcome!

About

1cak scraper

License:MIT License


Languages

Language:JavaScript 100.0%