We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9bca68 commit f263fc7Copy full SHA for f263fc7
main.py
@@ -16,6 +16,16 @@ async def login():
16
return "We don't allow cross login to steamcommunity.com <a href='/'>Back</a>"
17
18
19
+@app.route("/market/")
20
+@app.route("/discussions/")
21
+@app.route("/my/")
22
+@app.route("/id/")
23
+@app.route("/account/")
24
+@app.route("/profiles/")
25
+async def home():
26
+ return "We don't support other pages of steamcommunity.com <a href='/'>Back</a>"
27
+
28
29
@app.route("/dl-workshop/<int:app_id>/<int:workshop_id>")
30
async def download_workshop(app_id, workshop_id):
31
path = await workshop_download(app_id, workshop_id)
0 commit comments