Settings
respo.settings
Config
Bases: pydantic.BaseSettings
Config for respo based on evironment variables.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
RESPO_AUTO_FOLDER_NAME |
str
|
folder with pickled respo model |
required |
RESPO_AUTO_BINARY_FILE_NAME |
str
|
file name of pickled model in auto folder |
required |
RESPO_CHECK_FORCE |
bool
|
require strict validation in respo.RespoClient methods |
required |
RESPO_FILE_NAME_RESPO_MODEL |
str
|
name of exported python file |
required |
Source code in respo/settings.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
|
path_bin_file()
property
Get pathlib path to binary file
Source code in respo/settings.py
22 23 24 25 26 27 |
|
path_python_file()
property
Get pathlib path to respo python file
Source code in respo/settings.py
29 30 31 32 |
|