diff options
| author | Pinapelz <yukais@pinapelz.com> | 2026-03-12 13:56:30 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-03-12 13:56:50 -0700 |
| commit | caa3cf245186ab0f6fb33e63a7dd838d834da12e (patch) | |
| tree | bc5742a134ecabf0b9d35cc12b1d6f67defd5da7 /constants.py | |
| parent | 5658441ab9b703c95a48e654d41e45cc3a55ffd3 (diff) | |
refactor: move to common NewsSource interface
cleanup imports by defining initaliazers modules and decorator
remove legacy scrapers
remove single factory for sega games (sites don't change that much)
Diffstat (limited to 'constants.py')
| -rw-r--r-- | constants.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/constants.py b/constants.py index 6125147..dc1c680 100644 --- a/constants.py +++ b/constants.py @@ -3,8 +3,6 @@ from enum import Enum DAYS_LIMIT=14 SOUND_VOLTEX_EXCEED_GEAR_NEWS_SITE ="https://p.eagate.573.jp/game/sdvx/vi/news/index.html" -IIDX_PINKY_CRUSH_NEWS_SITE="https://p.eagate.573.jp/game/2dx/32/info/index.html" # legacy should not be used, eamuse feed is more verbose -DDR_WORLD_NEWS_SITE="https://p.eagate.573.jp/game/ddr/ddrworld/info/index.html" POLARIS_CHORD_NEWS_SITE="https://p.eagate.573.jp/game/polarischord/pc/news/news.html" POLARIS_CHORD_RECENT_NEWS_LIMIT=15 @@ -54,11 +52,13 @@ class CHUNITHM_VERSION(Enum): LUMINOUS_PLUS = 1 VERSE = 2 X_VERSE = 3 + X_VERSE_X = 4 class MAIMAIDX_VERSION(Enum): PRISM = 1 PRISM_PLUS = 2 CIRCLE = 3 + CIRCLE_PLUS = 4 class ONGEKI_VERSION(Enum): REFRESH = 1 |
