iseizuu / anime-wallpaper

Get Anime wallpapers based on scraping from websites.
https://anime-wall.aizuu.my.id/
MIT License
17 stars 2 forks source link
anime anime-images anime-scraper anime-search wallpaper

Anime Wallpaper

Version Anime Wallpaper on npm

[Documentation]

Get Anime wallpapers based on scrapping from websites.

Website Type Status
Hqdwalls [NEW] Image
Wall Haven Image
ZeroChan Image
Wallpapers.com Image
Hoyolab Image
Pinterest Image
Moe Walls [NEW] Video/Image


Version

Installing

npm install anime-wallpaper

or

yarn add anime-wallpaper

Example Usage from Website

At the head of your file, start by importing the necessary classes

const { AnimeWallpaper, AnimeSource } = require('anime-wallpaper');
const wallpaper = new AnimeWallpaper();
const wallpaper = await wallpaper.random({ resolution: "1920x1080" });
return console.log(wallpaper)
const wallpaper = await wall.search({ title: "firefly honkai", page: 1, type: "sfw", aiArt: true }, AnimeSource.WallHaven);
return console.log(wallpaper)
const wallpaper = await wallpaper.search({ title: "Keqing" }, AnimeSource.Wallpapers);
return console.log(wallpaper)
const wallpaper = await wallpaper.search({ title: "Misaka Mikoto" }, AnimeSource.ZeroChan);
return console.log(wallpaper)

Live 2D

const wallpaper = await wallpaper.live2d("Jane Doe");
return console.log(wallpaper)

Hoyolab Example

const wallpaper = await wall.hoyolab({ game: "GenshinImpact", postType: "Trending" });
return console.log(wallpaper)

Result

{
  data: {
    list: [
      {
        game: {...},
        post: {...},
        topics: [{...}]
        user: {...}
      }
    ]
  }
}

Pinterest

const wallpaper = await wall.pinterest("Ellen Joe ZzZ");
return console.log(wallpaper)

Warning

In some rare cases, the fetching process might fail due to inconsistencies when scraping websites.

Contributors

Fork then clone the project and install its dependencies:

npm i

In the root folder of the project type the following to compile the .ts into .js

tsc

© Aizuu