Configuration
Pyot requires many setups and configurations in order to work properly. Models cannot be imported until the related confs are evaluated (raises Model ... is inactive
).
These configurations generally stays all packed in a single file (generally called conf.py
or pyotconf.py
) or one file per model, they must be loaded once and only once at application startup.
Models
Module: pyot.conf.model
Configurable models: riot
, lol
, tft
, lor
, val
Setup, configure and activate the models of need. Define the default platform, region, version and locale, these are used for default values in class init definitions and object bridging. For a list of correct platforms and regions, they are documented under each models main page.
function activate_model
-> decorator(ModelConf)
activate_model
-> decorator(ModelConf)
Arguments:
name
: Name of model
class ModelConf
:
ModelConf
:Attributes:
default_platform
:str
default_region
:str
default_version
:str
default_locale
:str
Pipelines
Module: pyot.conf.pipeline
Configurable models: lol
, tft
, lor
, val
Setup, configure and activate a pipeline for the activated models. A pipeline is a list of prioritized data sources that a model will request data from. You may define and activate multiple pipelines under some circumstances, but one and only one default pipeline must exists for each model.
Global models are not configurable as an standalone pipeline, such as riot
, because objects of multiple other models can access these models objects in their own pipelines. They are configured as part of other models pipelines.
function activate_pipeline
-> decorator(PipelineConf)
activate_pipeline
-> decorator(PipelineConf)
Arguments:
name
: Name of model this pipeline belongs to
class PipelineConf
:
PipelineConf
:Attributes:
name
:str
Name of this pipeline
default
:bool
Is this the default pipeline
stores
:List[Dict[str, Any]]
List of data stores, the earlier the store is located in the list, the higher the priority. Each store has it's own configurations, they are documented in the Stores section.
Imports
Conf files can be imported in following ways:
Using
import_confs
frompyot.conf.utils
.Manually importing the conf file in python syntax.
If an integration is being used (e.g. Django), check if the integration has a custom conf import hook and use it instead.
function import_confs
-> None
import_confs
-> None
Arguments:
path_or_paths
: Import path or list of import paths to the conf files.
Example
Example configuration of lol
model and a default pipeline including a cache store that caches summoners for 100 seconds, matches and timelines for 10 minutes; and service stores for CDragon and RiotAPI:
Now import the confs into your application:
Last updated