Config
This module contains functions for creating, saving, loading, and setting the configuration for the AniList API.
Get_Config
¶
Gets the configuration dictionary.
This function loads the configuration dictionary and sets the environment variables with the values from the configuration dictionary.
PARAMETER | DESCRIPTION |
---|---|
app
|
The application object.
TYPE:
|
Source code in AnilistMangaUpdater/Utils/Config.py
Set_Environment_Variables
¶
Sets the environment variables with the values from the configuration dictionary.
PARAMETER | DESCRIPTION |
---|---|
config
|
The configuration dictionary.
TYPE:
|
Source code in AnilistMangaUpdater/Utils/Config.py
create_config
¶
create_config(client: str, secret: str, token: Optional[str] = None, months: Optional[int] = None, private: Optional[bool] = None) -> dict
Creates a configuration dictionary.
PARAMETER | DESCRIPTION |
---|---|
client
|
The client ID for the AniList API.
TYPE:
|
secret
|
The client secret for the AniList API.
TYPE:
|
token
|
The access token for the AniList API. Default is None.
TYPE:
|
months
|
The number of months to consider for the manga updates. Default is None.
TYPE:
|
private
|
The privacy setting for the manga updates. Default is None.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
dict
|
The configuration dictionary.
TYPE:
|
Source code in AnilistMangaUpdater/Utils/Config.py
load_config
¶
Loads the configuration dictionary from a file.
PARAMETER | DESCRIPTION |
---|---|
file_path
|
The path to the configuration file.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
dict
|
The configuration dictionary if the file is found, otherwise None.
TYPE:
|
Source code in AnilistMangaUpdater/Utils/Config.py
save_config
¶
Saves the configuration dictionary to a file.
PARAMETER | DESCRIPTION |
---|---|
config
|
The configuration dictionary.
TYPE:
|
file_path
|
The path to the configuration file.
TYPE:
|