mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
28 lines
522 B
Python
28 lines
522 B
Python
from enum import StrEnum
|
|
|
|
|
|
class Genre(StrEnum):
|
|
ACTION = "action"
|
|
ADVENTURE = "adventure"
|
|
ANIMATION = "animation"
|
|
COMEDY = "comedy"
|
|
CRIME = "crime"
|
|
DOCUMENTARY = "documentary"
|
|
DRAMA = "drama"
|
|
FAMILY = "family"
|
|
FANTASY = "fantasy"
|
|
HISTORY = "history"
|
|
HORROR = "horror"
|
|
MUSIC = "music"
|
|
MYSTERY = "mystery"
|
|
ROMANCE = "romance"
|
|
SCIENCE_FICTION = "science-fiction"
|
|
THRILLER = "thriller"
|
|
WAR = "war"
|
|
WESTERN = "western"
|
|
KIDS = "kids"
|
|
REALITY = "reality"
|
|
POLITICS = "politics"
|
|
SOAP = "soap"
|
|
TALK = "talk"
|