APIRequests
This module contains functions to send API requests to Anilist's GraphQL endpoint. It includes functions to handle rate limits, set the access token, and check if the access token needs to be refreshed.
Set_Access_Token
¶
Set the access token for the API requests.
This function loads the configuration from a JSON file and sets the access token for the API requests. If the access token is not found in the configuration, it prints an error message. If the configuration file is not found, it prints an error message and returns.
PARAMETER | DESCRIPTION |
---|---|
app
|
The application object used to update the terminal and progress.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
bool
|
True if the access token is set successfully, None otherwise.
TYPE:
|
Source code in AnilistMangaUpdater/API/APIRequests.py
api_request
¶
api_request(query: str, app: object, variables: Optional[Union[dict, None]] = None, retries: int = 3) -> Optional[Union[dict, None]]
Send a POST request to the API endpoint and handle rate limits.
PARAMETER | DESCRIPTION |
---|---|
query
|
The GraphQL query to send.
TYPE:
|
app
|
The application object used to update the terminal and progress.
TYPE:
|
variables
|
The variables for the GraphQL query.
TYPE:
|
retries
|
The number of times to retry the request if a 500 status code is received.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
dict
|
The JSON response from the API if the request is successful, None otherwise.
TYPE:
|
Source code in AnilistMangaUpdater/API/APIRequests.py
needs_refresh
¶
Check if the access token needs to be refreshed.
This function sends a simple query to the API to check if the access token is valid. If the status code of the response is 401 (Unauthorized) or 400 (Bad Request), it means the access token is invalid and needs to be refreshed. In this case, it returns True. Otherwise, it returns False.
PARAMETER | DESCRIPTION |
---|---|
app
|
The application object used to update the terminal and progress.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
bool
|
True if the access token needs to be refreshed, False otherwise.
TYPE:
|