Source code for scapi.consts
[docs]
class BaseUrl:
"""Base URLs for API endpoints."""
DEMO = "http://dapi.stalcraft.net"
EXTERNAL = PRODUCTION = "http://eapi.stalcraft.net"
OAUTH = "https://exbo.net/oauth"
[docs]
class DatabaseRepository:
"""Git Repository storing game entity ids, data and translations."""
OWNER = "EXBO-Studio"
REPOSITORY = "stalcraft-database"
BRANCH = "main"
[docs]
class Defaults:
"""Default constant values."""
TIMEOUT: int = 60
JSON: bool = False
REDIRECT_URI: str = "http://localhost"
SCOPE: str = ""