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 /bemani/__init__.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 'bemani/__init__.py')
| -rw-r--r-- | bemani/__init__.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bemani/__init__.py b/bemani/__init__.py new file mode 100644 index 0000000..f16ed0a --- /dev/null +++ b/bemani/__init__.py @@ -0,0 +1,7 @@ +from bemani.sdvx import parse_exceed_gear_news_site +from bemani.polaris_chord import parse_polaris_chord_news_site + +__all__ = [ + "parse_exceed_gear_news_site", + "parse_polaris_chord_news_site", +] |
