Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nekopoi-scraper

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nekopoi-scraper

Simple nekopoi scraper

  • 2.5.2
  • unpublished
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
29
increased by31.82%
Maintainers
1
Weekly downloads
 
Created
Source


Simple

Note

Our beloved nekopoi admin has change something so I change the code a bit.

Click here ✓ Remove obfuscate

How To Use

  1. Install Packages
    npm install nekopoi-scraper
    
    or
    yarn add nekopoi-scraper
    
  2. Example
  • Import packages

    • cjs
      const nekopoi = require("nekopoi-scraper");
      const { GetRecent, Search, GetId } = new nekopoi();
      
    • ESM
      import nekopoi from "nekopoi-scraper";
      const { GetRecent, Search, GetId, ListAll } = new nekopoi();
      
  • Get hentai by query
    import nekopoi from "nekopoi-scraper";
    const { Search } = new nekopoi();
    
    let query = "love";
    Search(query).then(async (data) => {
    console.log(data);
    });
    
    • Output
    [
      {
        "id": 23916,
        "date": "August 30, 2022",
        "title": "SSNI-447 Erotic Love Slope Way Of View Sexual Desire Dada Leak Erotic Past Nuki Rolled Service 170 Minutes VIP Course",
        "image": "https://nekopoi.care/wp-content/uploads/2022/08/SSNI-447-Erotic-Love-Slope-Way-Of-View-Sexual-Desire-Dada-Leak-Erotic-Past-Nuki-Rolled-Service-170-Minutes-VIP-Course-Nekopoi-150x150.jpg",
        "type": "post"
      },
      ...
    ]
    
  • Get latest/recent hentai
    import nekopoi from "nekopoi-scraper";
    const { GetRecent } = new nekopoi();
    
    GetRecent().then(async (data) => {
      console.log(data);
    });
    
    • Output
    [
      {
        "id": 21910,
        "title": "Ero Ishi: Seijun Bishoujo wo Kotoba Takumi ni Hametai Houdai",
        "image": "https://nekopoi.care/wp-content/uploads/2022/01/Ero-Ishi1.jpg",
        "description": "Menceritakan dokter kelamin yang sekaligus juga penjahat kelamin yang membodoh-bodohi cewek SMA."
      },
      ...
    ]
    
  • Get hentai detail by id
    import nekopoi from "nekopoi-scraper";
    const { GetId } = new nekopoi();
    
    GetId(21910).then(async (data) => {
      console.log(data);
    });
    
    • Output
    {
      "id": 21910,
      "date": "2022-09-01 00:00:40",
      "title": "Ero Ishi: Seijun Bishoujo wo Kotoba Takumi ni Hametai Houdai",
      "description": "Menceritakan dokter kelamin yang sekaligus juga penjahat kelamin yang membodoh-bodohi cewek SMA.",
      "image": "https://nekopoi.care/wp-content/uploads/2022/01/Ero-Ishi1-150x150.jpg",
      "info_meta": {
        "aliases": "エロ医師 ~清純美少女を言葉巧みにハメたい放題~",
        "episode": "4",
        "status": "Completed",
        "tayang": "Jan 28, 2022",
        "produser": "PoRO",
        "genre": [
          [Object],
          [Object],
          [Object],
          [Object],
          [Object],
          [Object],
          [Object],
          [Object],
          [Object]
        ],
        "durasi": "21 min",
        "skor": "6.89"
      },
      "episode": [
        {
          "id": 21911,
          "date": "February 1, 2022",
          "title": "Ero Ishi: Seijun Bishoujo wo Kotoba Takumi ni Hametai Houdai Episode 1 Subtitle Indonesia",
          "image": "https://nekopoi.care/wp-content/uploads/2022/01/vlcsnap-2022-01-31-23h52m28s333-150x150.png"
        },
        ...
      ]
    }
    
    • Output if id is episode
    {
    "id": 23239,
    "title":
      "[JAV SUB INDO] HAVD-875 The Hips That Won't Stop Even Though She Loves Her Husband. The Young Wife Who Is Addicted To The Big Cocks Of The Brothers Next Door",
    "content":
      "...",
    "image": "https://nekopoi.care/wp-content/uploads/2022/07/1havd875pl.jpg",
    "stream": [{ "link": "https://dood.pm/xxxx" }],
    "download": [
      { "type": "360p", "links": [Array] },
      { "type": "480p", "links": [Array] },
      { "type": "720p", "links": [Array] },
    ],
    }
    
  • Get List all hentai
    import nekopoi from "nekopoi-scraper";
    const { ListAll } = new nekopoi();
    
    let page = 1
    let type = ["jav", "hentai"]
    ListAll(page, type[0]).then(async (data) => {
      console.log(data);
    });
    
    • Output
    [
      {
        "id": 20908,
        "date": "October 11, 2021",
        "title": "362SCOH-047 [Creampie] Let a carefully selected beautiful girl cosplay and conceive my child [Tokisaki]",
        "image": "https://nekopoi.care/wp-content/uploads/2021/10/93644-150x150.jpg",
        "type": "post"
      }
      ...
    ]
    

Contact

David - @david.stefen

(back to top)

Keywords

FAQs

Package last updated on 22 Oct 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc