You decide, you can open issues what website/app and data to be scrapped.
Website
- Doujindesu
- Otakudesu
- Youtube
- Anoboy
- Komiku.id
- Danbooru
- Apkmody.io
- PhotoFunia
- Hentai.tv
- bokepsin
- nhentai.to
- xvideos.com
- 9apps.com
- hentaihaven.xxx
App
- Status Video Wa Indonesia
- Unsplash
- Downloader for tiktok
App use rapid Api.
- SuperDownloader
Anime/comic
- Doujindesu
- latest
- search
- detail
- Otakudesu
- latest
- search
- detail
- Anoboy
- latest
- search
- detail
- Komiku.id
- latest
- search
- detail
- Hentai.tv
- etc.
- nhentai.to
- search
- detail
Downloader
Searching
- Unsplash
- search
- Danbooru
- search
- Music
- search
- Apkmody
- search
- detail
- 9apps.com
- search
- detail
Maker
- PhotoFunia
- text
- 1 param.
- 2 param
- image
- Buffer
- text
- Image Diffusion.
- stable
- anime
- h5.tu.qq.com
- From image url
Nsfw
- Bokepsin
- latest
- search
- detail
- xvideos
- search
- detail
- hentaihaven
- search
- detail
Using GitHub version to test latest fix/update.
npm install github:xct007/frieren-scraper
Package name changed to @xct007/frieren-scraper
import { youtube } from "@xct007/frieren-scraper";
// searching videos
const ArrObj = await youtube.search("rose gone mv");
console.log(ArrObj);
// fetch download url;
const Obj = await youtube.download("https://www.youtube.com/watch?v=xxx");
console.log(Obj);
import { tiktok } from "@xct007/frieren-scraper";
// v1. fetch detail/download url
const Obj = await tiktok.v1("https://TIKTOK_URL");
console.log(Obj);
// others version will added soon.
import { instagram } from "@xct007/frieren-scraper";
// fetch direct download url
const Obj = await instagram.download("https://instagram_URL");
console.log(Obj);
import { facebook } from "@xct007/frieren-scraper";
// v1. fetch direct download url
const Obj = await facebook.v1("https://FACEBOOK_URL");
console.log(Obj);
// others version will added soon.
import { storyWa } from "@xct007/frieren-scraper";
// fetch popular videos
const ArrObj = await storyWa.popular();
console.log(ArrObj);
// search videos by query
const ArrObj = await storyWa.search("query");
console.log(ArrObj);
import { zippyshare } from "@xct007/frieren-scraper";
// fetch direct download url
const Obj = await zippyshare.download("https://ZIPPYSHARE_URL");
console.log(Obj);
import { pinterest } from "@xct007/frieren-scraper";
// v1. fetch direct download url
const Obj = await pinterest.v1("https://PINTEREST_URL");
console.log(Obj);
// others version will added soon.
import { komikuId } from "@xct007/frieren-scraper";
// fetch latest comic
const ArrObj = await komikuId.latest();
console.log(ArrObj);
// search comic by query
const ArrObj = await komikuId.search("query");
console.log(ArrObj);
// fetch comic/chapter detail by url.
const Obj = await komikuId.detail("https://KOMIKUID_URL");
console.log(Obj);
import { otakudesu } from "@xct007/frieren-scraper";
// fetch latest anime
const ArrObj = await otakudesu.latest();
console.log(ArrObj);
// search anime by query
const ArrObj = await otakudesu.search("query");
console.log(ArrObj);
// fetch anime detail by url
const Obj = await otakudesu.detail("https://OTAKUDESU_URL");
console.log(Obj);
import { anoboy } from "@xct007/frieren-scraper";
// fetch latest anime
const ArrObj = await anoboy.latest();
console.log(ArrObj);
// search anime by query
const ArrObj = await anoboy.search("query");
console.log(ArrObj);
// fetch anime detail by url
const Obj = await anoboy.search("https://ANOBOY_URL");
console.log(Obj);
import { doujindesu } from "@xct007/frieren-scraper";
// fetch latest doujin
const ArrObj = await doujindesu.latest();
console.log(ArrObj);
// search doujin by query
const ArrObj = await doujindesu.search("query");
console.log(ArrObj);
// fetch doujin detail by url
const Obj = await doujindesu.detail("https://DOUJINDESU_URL");
console.log(Obj);
import { unsplash } from "@xct007/frieren-scraper";
// Search images by query
const ArrObj = await unsplash.search("query");
console.log(ArrObj);
import { danbooru } from "@xct007/frieren-scraper";
// Search images by query
const ArrObj = await danbooru.search("query");
console.log(ArrObj);
import { music } from "@xct007/frieren-scraper";
// Search music and audio url by query.
// more short query, more results found.
const ArrObj = await music.search("query");
console.log(ArrObj);
import { apkmody } from "@xct007/frieren-scraper";
// search apps/games
const ArrObj = await apkmody.search("query");
console.log(ArrObj);
// fetch direct download url
// High memory usage. LOL
const Obj = await apkmody.download("https://APKMODY_URL");
console.log(Obj);
import { nineApps } from "@xct007/frieren-scraper";
// search apps/games
const ArrObj = await nineApps.search("query");
console.log(ArrObj);
// fetch detail/direct download url
const Obj = await nineApps.download("https://9apps.com/...");
console.log(Obj);
import { photofunia } from "@xct007/frieren-scraper";
// get list all effects key.
const ArrObj = await photofunia.listEffects();
console.log(ArrObj);
// Generate text on image by key
const key = "balloon".
const Obj = await photofunia.create(key, {
type: "text", // pass type as text.
input: "Text should generate"
});
console.log(Obj);
// Image filter
const key = "the-frame".
const Obj = await photofunia.create(key, {
type: "image", // pass type as image.
// input only accept Buffer
input: fs.readFileSync("./path_image.jpg") // LOL af
});
console.log(Obj);
import { diffusion } from "@xct007/frieren-scraper";
import { writeFileSync } from "fs";
// stable diffusion.
const prompt = "1girl, blush, looking to viewer, warm smile,";
const seed = 123456789; // (optional). default random.
const Obj = await diffusion.stable(prompt, seed);
console.log(Obj);
/*
{
process_time: Number,
seed: "String",
ext: "String",
mimetype: "String",
base64Img: "String" // encodedBase64
}
*/
// example save to disk
const saveFilename = `./image.${Obj.ext}`;
const buffer = Buffer.from(Obj.base64Img, "base64");
writeFileSync(saveFilename, buffer);
// Anime diffusion will be added
// if this repo star reach >= 50.
import { bokepsin } from "@xct007/frieren-scraper";
// Get latest
const ArrObj = await bokepsin.latest();
console.log(ArrObj);
// search
const ArrObj = await bokepsin.search("query");
console.log(ArrObj);
// detail
const Obj = await bokepsin.latest("URL");
console.log(ArrObj);
import { nhentai } from "@xct007/frieren-scraper";
// thumbnail/images url cannot be fetched
// search
const ArrObj = await nhentai.search("write your dream word");
console.log(ArrObj);
// detail
const id = 123456
const ArrObj = await nhentai.detail(id);
console.log(ArrObj);
import { xvideos } from "@xct007/frieren-scraper";
// search
const ArrObj = await xvideos.search("mom");
console.log(ArrObj);
// detail
const url = "https://xvideos..."
const ArrObj = await xvideos.detail(url);
console.log(ArrObj);
import { hentaiHaven } from "@xct007/frieren-scraper";
// search
const ArrObj = await hentaiHaven.search("your mum");
console.log(ArrObj);
// detail
const Obj = await hentaiHaven.detail("https://hentaihaven/your_mum");
console.log(Obj);
There is probably no need to use statement try/catch, it is already handle.
import { youtube } from "@xct007/frieren-scraper";
youtube.download("YOUTUBE_URL").then((Obj) => {
if (Obj.error) {
// Error
console.log(Obj.);
/*
{
"error": true,
"message": ""
}
*/
} else {
// ...Your code
console.log(Obj);
}
});
// Promise
const Obj = await youtube.download("YOUTUBE_URL");
if (Obj.error) {
// Error
console.log(Obj);
/*
{
"error": true,
"message": ""
}
*/
} else {
// ...Your code.
console.log(Obj);
}
This repository project is a learning exercise, and as such it utilizes references from other open source repositories. No commercial use is intended, and all efforts have been made to ensure proper attribution has been given to any referenced libraries and code.