diff options
| author | Fuwn <[email protected]> | 2025-07-07 01:35:44 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-07-07 01:35:44 -0700 |
| commit | 739cc25a80da04f40be2ccd38a2f90f20ef62370 (patch) | |
| tree | 7d3b121cc90fa5cba6e7f0af7741b09d8ad909ff /src | |
| parent | feat(schedule): Add genre flag (diff) | |
| download | oguri-739cc25a80da04f40be2ccd38a2f90f20ef62370.tar.xz oguri-739cc25a80da04f40be2ccd38a2f90f20ef62370.zip | |
refactor: Move option defaults to module
Diffstat (limited to 'src')
| -rw-r--r-- | src/oguri/constants.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/oguri/constants.py b/src/oguri/constants.py new file mode 100644 index 0000000..3b2318c --- /dev/null +++ b/src/oguri/constants.py @@ -0,0 +1,24 @@ +COUNTRIES = ["JP", "KR", "CN"] +FORMATS = ["TV", "TV_SHORT", "MOVIE", "SPECIAL", "OVA"] +SOURCES = ["ORIGINAL", "MANGA", "LIGHT_NOVEL", "VISUAL_NOVEL", "VIDEO_GAME", "OTHER"] +GENRES = [ + "Action", + "Adventure", + "Comedy", + "Drama", + "Ecchi", + "Fantasy", + "Hentai", + "Horror", + "Mahou Shoujo", + "Mecha", + "Music", + "Mystery", + "Psychological", + "Romance", + "Sci-Fi", + "Slice of Life", + "Sports", + "Supernatural", + "Thriller", +] |