We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfa9103 commit 862ec69Copy full SHA for 862ec69
1 file changed
howlongtobeat__web_wrapper/api_search.py
@@ -34,7 +34,9 @@ def _process_name(name: str) -> str:
34
def get_api_search_raw(game: str) -> dict[str, Any]:
35
with sync_playwright() as p:
36
browser = p.webkit.launch()
37
+
38
page = browser.new_page()
39
+ page.set_default_timeout(90_000)
40
41
page.goto(f"https://howlongtobeat.com/?q={game}", wait_until="commit")
42
0 commit comments