Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 339 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 339 Bytes

pixivdl

usage

$ npm i @franknoh/pixivdl
const {PixivClient} = require("@franknoh/pixivdl");

async function main() {
    const client = new PixivClient();
    await client.login("id", "pw");
    await client.download(["genshin"], 10, "./downloads", 200, ["R-18"]);
}

main().then().catch(console.error);