mirror of
https://github.com/DragoonAethis/itch-dl.git
synced 2024-12-21 10:31:52 +01:00
19 lines
428 B
Python
19 lines
428 B
Python
ITCH_BASE = "itch.io"
|
|
ITCH_URL = f"https://{ITCH_BASE}"
|
|
ITCH_API = f"https://api.{ITCH_BASE}"
|
|
|
|
# Extracts https://user.itch.io/name to {'author': 'user', 'game': 'name'}
|
|
ITCH_GAME_URL_REGEX = r"^https:\/\/(?P<author>[\w\d\-_]+).itch.io\/(?P<game>[\w\d\-_]+)$"
|
|
|
|
ITCH_BROWSER_TYPES = [
|
|
"games",
|
|
"tools",
|
|
"game-assets",
|
|
"comics",
|
|
"books",
|
|
"physical-games",
|
|
"soundtracks",
|
|
"game-mods",
|
|
"misc",
|
|
]
|