diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-10-04 11:59:22 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-10-04 11:59:22 -0700 |
| commit | 81906842665debc9c390c917e8e2e3a030d8c1c7 (patch) | |
| tree | 0dadeef5360ef165f44794fbbc25085d6fbfdd0d /bemani/iidx.py | |
| parent | a6df2f7648748817a547b50f1effbdb92b2a572d (diff) | |
refactor: remove game version specific identifiers
many of these will continue to work for a long time anyways without necessary updates
Diffstat (limited to 'bemani/iidx.py')
| -rw-r--r-- | bemani/iidx.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bemani/iidx.py b/bemani/iidx.py index 521d4f9..de7f34c 100644 --- a/bemani/iidx.py +++ b/bemani/iidx.py @@ -7,6 +7,7 @@ KEY_TERMS_TL = [ ("クプロ", "QPro") ] +# Legacy code. e-amuse feed provides better data def parse_pinky_crush_news_site(html: str): base_url = "https://p.eagate.573.jp" type_map = { @@ -54,7 +55,7 @@ def parse_pinky_crush_news_site(html: str): content = re.sub(r'\s*/\s*', '/', content) news_items.append({ "date": date_str, - "identifier": "IIDX_PINKY_CRUSH", + "identifier": "IIDX", "type": type_map[type_class], "timestamp": timestamp, "headline": headline, |
