pycodeanalyzer.core.configuration.configuration
Summary
Classes:
Configuration of pycodeanalyzer. |
Diagrams
Configuration
classDiagram class Configuration { <<Class>> + Any logger + Any config + Dict<str,List<Tuple<str,str>>> definition +Constructor() None +load(str path) bool +defineConfig(str section, str name, str comment) None +get(str section, str name) str +getInt(str section, str name) int +getFloat(str section, str name) float +getBool(str section, str name) bool +getList(str section, str name) List~Any~ +generateTemplate(str path) None }Configuration class diagram
Reference
- class pycodeanalyzer.core.configuration.configuration.Configuration[source]
Bases:
objectConfiguration of pycodeanalyzer.
This class allow to parse and use configuration with a INI format.
- load(path: str) bool[source]
Load configuration file.
Read and load the configuration from a INI config file.
This file was automatically generated using better_apidoc.