worked on gui implementation and cleaned up a bit

This commit is contained in:
nosch
2026-02-28 17:58:50 +01:00
parent e4d1c189b7
commit 889c50e201
6 changed files with 29 additions and 139 deletions
-7
View File
@@ -35,13 +35,6 @@ def scrape_steamrip_links(text = None):
return ret
def offline_scrape_steamrip_links():
text = ""
with open("example.html", encoding = "utf-8") as f:
text=f.read()
return scrape_steamrip_links(text)
def scrape_steamrip_game_downloads(gamelink):
url = "https://steamrip.com" + gamelink
response = requests.get(url)