imdbsd / collecttoon

weekend stuff
0 stars 0 forks source link

Feat: Genre Scrapping Service #3

Open imdbsd opened 3 years ago

imdbsd commented 3 years ago

All genres can be found in this link, located on the div element with classname genres. It all listed on ul li element. It contain genre names with count of webtoon with that genre.

all the genre link, when clicked will redirect the user on page https://www.webtoon.xyz/webtoon-genre/:genre.

Data format for our store should be like this

type Genre = {
  name: string
  count: number
}

type GenreScrapperFn = () => Promise<Genre[]>

please also add test for scrapping genres.

imdbsd commented 3 years ago

Postponned, thinking of changing the scrap mechanism