diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-04-16 23:55:00 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-04-16 23:55:00 -0700 |
| commit | a5b15484423f9c9c9518a7be49845f018a8ff46f (patch) | |
| tree | 4d9254e50f62d2cfc5c5269950d08b0cb9b7dab4 /bemani/sdvx.py | |
| parent | f140219f082e658f65a10d9ebfa070f5d649771d (diff) | |
feat: add support for DDR World
Diffstat (limited to 'bemani/sdvx.py')
| -rw-r--r-- | bemani/sdvx.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bemani/sdvx.py b/bemani/sdvx.py index a87fe44..c77f198 100644 --- a/bemani/sdvx.py +++ b/bemani/sdvx.py @@ -2,7 +2,8 @@ from bs4 import BeautifulSoup from datetime import datetime from urllib.parse import urljoin -def parse_exceed_gear_news_site(html: str, base_url: str): +def parse_exceed_gear_news_site(html: str): + base_url = "https://p.eagate.573.jp" soup = BeautifulSoup(html, 'html.parser') news_list = soup.select('.tab ul.news li') |
