fix rest of routes
This commit is contained in:
parent
fa3de99222
commit
2ab03e624c
1 changed files with 3 additions and 3 deletions
|
|
@ -77,12 +77,12 @@ def run_scraper_offline(fixture_text):
|
||||||
if not url:
|
if not url:
|
||||||
raise AssertionError("AtCoder expects url routing")
|
raise AssertionError("AtCoder expects url routing")
|
||||||
if "/contests/archive" in url:
|
if "/contests/archive" in url:
|
||||||
return fixture_text("atcoder/atcoder_contests.html")
|
return fixture_text("atcoder/contests.html")
|
||||||
if url.endswith("/tasks"):
|
if url.endswith("/tasks"):
|
||||||
return fixture_text("atcoder/atcoder_abc100_tasks.html")
|
return fixture_text("atcoder/abc100_tasks.html")
|
||||||
if "/tasks/" in url:
|
if "/tasks/" in url:
|
||||||
slug = url.rsplit("/", 1)[-1]
|
slug = url.rsplit("/", 1)[-1]
|
||||||
return fixture_text(f"atcoder/atcoder_task_{slug}.html")
|
return fixture_text(f"atcoder/task_{slug}.html")
|
||||||
raise AssertionError(f"No fixture for AtCoder url={url!r}")
|
raise AssertionError(f"No fixture for AtCoder url={url!r}")
|
||||||
|
|
||||||
def _router_codeforces(*, path: str | None = None, url: str | None = None) -> str:
|
def _router_codeforces(*, path: str | None = None, url: str | None = None) -> str:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue