mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-12 15:50:01 -08:00
13 lines
442 B
Python
13 lines
442 B
Python
# The base domain for HiAnime.
|
|
HIANIME_DOMAIN = "hianimez.to"
|
|
HIANIME_BASE_URL = f"https://{HIANIME_DOMAIN}"
|
|
|
|
# The endpoint for making AJAX requests (fetching episodes, servers, etc.).
|
|
HIANIME_AJAX_URL = f"{HIANIME_BASE_URL}/ajax"
|
|
|
|
# The base URL for search queries.
|
|
SEARCH_URL = f"{HIANIME_BASE_URL}/search"
|
|
|
|
# The Referer header is crucial for making successful requests to the AJAX endpoints.
|
|
AJAX_REFERER_HEADER = f"{HIANIME_BASE_URL}/"
|