Software versions
This class is accessed via the versions
property on a CamillaClient
instance.
It provides methods for reading the software versions.
class: Versions
Bases: _CommandGroup
Version info
Source code in camilladsp\versions.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
|
camilladsp()
Read CamillaDSP version.
Returns:
Type | Description |
---|---|
Optional[Tuple[str, str, str]]
|
Tuple[List[str], List[str]] | None: A tuple containing the CamillaDSP version, as (major, minor, patch). |
Source code in camilladsp\versions.py
20 21 22 23 24 25 26 27 28 |
|
library()
Read pyCamillaDSP library version.
Returns:
Type | Description |
---|---|
Tuple[str, str, str]
|
Tuple[List[str], List[str]] | None: A tuple containing the pyCamillaDSP version, as (major, minor, patch). |
Source code in camilladsp\versions.py
30 31 32 33 34 35 36 37 38 39 |
|