Skip to content

alumag/webtoons-discord

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Webtoon Hooks

discord webhooks package for webtoons.com information

Installation

pip install WebtoonHooks

Usage

Send complete designed webhook with all the daily releases

Daily update

>>> from WebtoonHooks import ReleaseHook
>>> release = ReleaseHook()
>>> release.send("SECRET-WEBHOOK-URL")

Send webhook with the weekly hot webtoons

Weekly hot

>>> from WebtoonHooks import WeeklyHotHook
>>> hot = WeeklyHotHook()
>>> hot.send("SECRET-WEBHOOK-URL")

Get list of the dailies releases

>>> WebtoonHooks.get_daily_releases()   # list(<WebtoonHooks.Card>)
[
    Card(Boyfriend of the Dead, Comedy, Ushio, linked),
    Card(My Giant Nerd Boyfriend, Slice of life, fishball, linked),
    Card(Muted, Drama, Miranda Mundt, linked),
    ...
]

Get list of the weekly hot webtoons

>>> WebtoonHooks.get_weekly_hot()   # list(<WebtoonHooks.Card>)

Card object

Represent one daily_card from dailySchedule or challenge

  • Subject
  • Author name
  • Genre
  • Link to episodes list
  • Number of likes
  • New / Paused / UP tags
>>> card.href
'https://www.webtoons.com/en/comedy/boyfriend-of-the-dead/list?title_no=1102'
>>> card.subject
'Boyfriend of the dead'
<<<<<<< HEAD
>>> card.is_new
True

Made with 💗 for LINE WEBTOON by Aluma Gelbard.