Dataclasses

Dataclasses used to represent tags and genres

class luscious.Tag(id: str, text: str, category: str, url: str)

A Tag class used to help with tags

__str__()

Returns the tag name

property fullName

returns the full name of the in the format “category: name”

property hashtag

Returns the tag name in hashtag format “#Tag_Name”

property name

Returns the name of the comic without the category

property sanitizedName

Returns the sanitized name of the tag

class luscious.Genre(id: str, title: str, url: str)

A Tag class used to help with tags

__str__()

Returns the tag name

property fullName

returns the full name of the in the format “category: name”

property hashtag

Returns the tag name in hashtag format “#Tag_Name”

property name

Returns the name of the comic without the category

property sanitizedName

Returns the sanitized name of the tag