15 lines
No EOL
665 B
Python
15 lines
No EOL
665 B
Python
AUTH_BASE_URL = "https://auth.anny.eu"
|
|
ANNY_BASE_URL = "https://anny.eu"
|
|
BOOKING_API_BASE = "https://b.anny.eu/api/v1"
|
|
CHECKOUT_FORM_API = "https://b.anny.eu/api/ui/checkout-form"
|
|
RESOURCE_URL = f"{BOOKING_API_BASE}/resources/1-lehrbuchsammlung-eg-und-1-og/children"
|
|
SERVICE_ID = "449"
|
|
RESOURCE_ID = None # "5957" # Will be set dynamically if None, else use the given ID
|
|
TIMEZONE = "Europe/Berlin"
|
|
SSO_PROVIDER = "kit" # Available: kit (add more in auth/providers/)
|
|
|
|
DEFAULT_HEADERS = {
|
|
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:140.0) Gecko/20100101 Firefox/140.0',
|
|
'accept': 'application/vnd.api+json',
|
|
'accept-encoding': 'plain'
|
|
} |