-
ArchiveClient: Added
sourceoption toexport_parameter_values. By default this function will now use the Parameter Archive instead of doing a packet replay. -
MDBClient: Added
versionoption toexport_space_system. This defaults to XTCE1.2, but you could set it to1.3to use the newly introduced namespace. -
If you are still using old-style imports, you will now start seeing deprecation warnings. Reminder: all classes can be imported from
yamcs.clientpackage.For example, instead of:
from yamcs.core.auth import Credentials from yamcs.client import YamcsClient credentials = Credentials(username="admin", password="admin") client = YamcsClient("http://localhost:8090", credentials=credentials)
do instead:
from yamcs.client import Credentials, YamcsClient credentials = Credentials(username="admin", password="admin") client = YamcsClient("http://localhost:8090", credentials=credentials)
-
ArchiveClient: the method
sample_parameter_valueswas renamed todownsample_mean. The previous method still works but will generate a deprecation warning. Likewise theSampleclass was renamed toMeanSample. -
Improves error handling when querying URLs that do not appear to be Yamcs URLs.