main
¤
Nendo core main class.
Nendo
¤
Nendo(
config: Optional[NendoConfig] = None,
plugins: Optional[List[str]] = None,
logger: Optional[Logger] = None,
)
Main class that runs nendo core.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config |
NendoConfig
|
Custom settings to apply to this instance. |
None
|
plugins |
str
|
list of plugins to load. Defaults to None. |
None
|
logger |
Logger
|
Logger to use. Defaults to none. |
None
|
Source code in src/nendo/main.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
|
get_nendo
cached
¤
get_nendo()
Get the nendo instance singledton, cached.
Source code in src/nendo/main.py
162 163 164 165 |
|