Skip to content

RealFishDT/RealFishYoutubeTrendCrawling

Repository files navigation

RealFish Youtube Trend Video Crawling

Real Fish Youtube Trend Video Crawling(RYCT)

  • pure crawling youtube video site and public api
  • this module do not use youtube/google api, don't worry google api quota
  • Link: On Trend Real time update web page
    • this web page api server is made by this package

Install

npm i realfish-yct

Fix:

  • video rank duplicated bug fix, "video" type videos first 2 rank1 ,2 <- it's ok
  • bug 3, 4 rank have 1,2 rank number
  • it's fixed, please use 0.1.9 version

Support features:

  • Get On Trend Video List from youtube video web site

  • region and language support support languages are "KO", "EN", "ES" ISO 639-1, CAPITAL CASE support region are ISO 3166-1 alpha-2 that youtube support, CAPITAL CASE

  • this RYCT don't use headless browser and selector library like cheerio or scrapy, just use ajax, so fast and light

  • this works on nodejs and electron

    • unfortunately, not support common modern browser because CORS or SOP error
  • Typescript support

  • async/await support

  • new feature, support ES language

  • new feature, video count text is added

Dependency:

  • axios
  • node js > 16.0.0

RYCT APIS

  • API

    • crawling( gl: string, hl: string)
      • gl: region(national code) defualt "KR"
        • on trend(인급동) video ranks list is diffrent by gl
        • each region have each "on trend videos"
        • it affect "rank" property
      • hl: lanugage code default "KO", it's only support "KO", "EN", "ES"
        • if you use other language code, this module can not extract video list from youtube
  • Typescript

    import {crawling} from 'realfish-yct';
    const result = await crawling();
    import {crawling} from 'realfish-yct';
    const result = await crawling('US', 'EN');
  • Javascript

    const A = require('realfish-yct');
    
    A.crawling().then(h => {
      console.log(h);
    });
    const A = require('realfish-yct');
    
    A.crawling('US', 'EN').then(h => {
      console.log(h);
    });

    youtube video crawling : return information videos

    • crawling(videoid: string)
      • videoID: Youtube video id
  • Output

    • output data is json, gl=KR, hl=KO, korea, korean

      [
        {
          "videoId": "BKciq4cmElM",
          "viewCountText": "4,370,734 views",
          "thumbnail": "https://i.ytimg.com/vi/BKciq4cmElM/hqdefault.jpg?sqp=-oaymwEiCNIBEHZIWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBu5dbY-85_7lm8DyDZ3NRPLDFTMg",
          "title": "How to Teach Your Dog to Play Dead",
          "channelId": "UCLjhnUSXzC0F1WU70uQoYcA",
          "rank": 1,
          "type": "shorts"
        },
        {
          "videoId": "BKciq4cmElM",
          "viewCountText": "4,370,734 views",
          "thumbnail": "https://i.ytimg.com/vi/BKciq4cmElM/hqdefault.jpg?sqp=-oaymwEiCNIBEHZIWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBu5dbY-85_7lm8DyDZ3NRPLDFTMg",
          "title": "How to Teach Your Dog to Play Dead",
          "channelId": "UCLjhnUSXzC0F1WU70uQoYcA",
          "rank": 1,
          "type": "video"
        }
        .
        .
        .
      ]
    • output data is json, gl=SG, hl=EN, singapole, english

      [{
        "videoId": "BKciq4cmElM",
        "viewCountText": "4,370,734 views",
        "thumbnail": "https://i.ytimg.com/vi/BKciq4cmElM/hqdefault.jpg?sqp=-oaymwEiCNIBEHZIWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBu5dbY-85_7lm8DyDZ3NRPLDFTMg",
        "title": "How to Teach Your Dog to Play Dead",
        "channelId": "UCLjhnUSXzC0F1WU70uQoYcA",
        "rank": 1,
        "type": "shorts"
      },
      {
        "videoId": "BKciq4cmElM",
        "viewCountText": "4,370,734 views",
        "thumbnail": "https://i.ytimg.com/vi/BKciq4cmElM/hqdefault.jpg?sqp=-oaymwEiCNIBEHZIWvKriqkDFQgBFQAAAAAYASUAAMhCPQCAokN4AQ==&rs=AOn4CLBu5dbY-85_7lm8DyDZ3NRPLDFTMg",
        "title": "How to Teach Your Dog to Play Dead",
        "channelId": "UCLjhnUSXzC0F1WU70uQoYcA",
        "rank": 1,
        "type": "video"
      }
      .
      .
      .
      ]
  • properties

    • videoId: youtube video id
    • thumbnail: video thumbnail url
    • viewCountText: video views count text-> full video view count text
    • title: video title
    • channelId: this video owner channel id
    • rank: video rank in On Trend Videos(인급동)
    • type: 'shorts', 'video'
      • shorts: shorts video
      • video: normal youtube video
  • if you want sorted rank list by type, please use rank and type property

  • this module list provide short and video type are mixed list

  • Error Handling

      export enum CrawlingErrorCode {
        Normal,
        PlayerResponse,
        InitalData,
        InitalContinueData,
        Unknown,
      }
    
      export class CrawlingError extends Error {
        code: CrawlingErrorCode;
        name = '';
        constructor(code: CrawlingErrorCode, message?: string) {
          super(message);
          this.code = code;
          this.name = this.constructor.name;
        }
      }
    
    • use try/catch, CrawlingError class instance is throw in trand module
      • code is one of CrawlingErrorCode
      import {crawling, CrawlingError} from 'realfish-yct';
    
      try {
        const result = await crawling('US', 'EN');
      } catch (e) {
        const error = e as CrawlingError
        .
        .
        .
      }

    Product

  • RealFishDev Hom

  • Chrome Extension, Realfish View Like

  • Link: On Trend Real time update web page

    • Real time Korea, USA, Japan On Trend Video List, Update List Real Time

    RYCT(RealFish Youtube Trend Video Crawling) LICENSE

  • Real Fish ISC

Copyright (c) 2022 year, Real Fish Inc Content Dev Solutions

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

made by RealFishDT

About

Youtube Trand Crawling module, 인급동, On Trend

Resources

License

Stars

Watchers

Forks

Packages

No packages published