zaber-motion 7.10.0__py3-none-win_amd64.whl → 7.11.0__py3-none-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. zaber_motion/__init__.py +2 -0
  2. zaber_motion/ascii/all_axes.py +1 -1
  3. zaber_motion/ascii/axis.py +5 -5
  4. zaber_motion/ascii/axis_group.py +1 -1
  5. zaber_motion/ascii/axis_settings.py +1 -1
  6. zaber_motion/ascii/connection.py +1 -1
  7. zaber_motion/ascii/device.py +11 -11
  8. zaber_motion/ascii/device_io.py +1 -1
  9. zaber_motion/ascii/device_settings.py +1 -1
  10. zaber_motion/ascii/lockstep.py +2 -2
  11. zaber_motion/ascii/oscilloscope.py +1 -1
  12. zaber_motion/ascii/oscilloscope_data.py +1 -1
  13. zaber_motion/ascii/pvt.py +1 -1
  14. zaber_motion/ascii/pvt_buffer.py +2 -2
  15. zaber_motion/ascii/pvt_io.py +2 -2
  16. zaber_motion/ascii/pvt_sequence.py +7 -5
  17. zaber_motion/ascii/servo_tuner.py +1 -1
  18. zaber_motion/ascii/storage.py +2 -2
  19. zaber_motion/ascii/stream.py +3 -3
  20. zaber_motion/ascii/stream_buffer.py +2 -2
  21. zaber_motion/ascii/stream_io.py +2 -2
  22. zaber_motion/ascii/streams.py +1 -1
  23. zaber_motion/ascii/transport.py +1 -1
  24. zaber_motion/ascii/trigger.py +2 -2
  25. zaber_motion/ascii/triggers.py +1 -1
  26. zaber_motion/ascii/warnings.py +2 -2
  27. zaber_motion/binary/connection.py +1 -1
  28. zaber_motion/binary/device.py +3 -3
  29. zaber_motion/binary/device_settings.py +1 -1
  30. zaber_motion/dto/__init__.py +1 -0
  31. zaber_motion/dto/device_db_source.py +66 -0
  32. zaber_motion/dto/exceptions/__init__.py +1 -0
  33. zaber_motion/dto/exceptions/device_db_failed_exception_data.py +24 -1
  34. zaber_motion/dto/exceptions/device_db_inner_error.py +85 -0
  35. zaber_motion/dto/requests/__init__.py +1 -0
  36. zaber_motion/dto/requests/set_device_db_layered_sources_request.py +56 -0
  37. zaber_motion/dto/requests/set_device_db_source_request.py +6 -0
  38. zaber_motion/exceptions/__init__.py +1 -0
  39. zaber_motion/gcode/offline_translator.py +1 -1
  40. zaber_motion/gcode/translator.py +1 -1
  41. zaber_motion/library.py +18 -1
  42. zaber_motion/microscopy/autofocus.py +3 -3
  43. zaber_motion/microscopy/camera_trigger.py +2 -2
  44. zaber_motion/microscopy/filter_changer.py +1 -1
  45. zaber_motion/microscopy/illuminator.py +2 -2
  46. zaber_motion/microscopy/illuminator_channel.py +6 -6
  47. zaber_motion/microscopy/microscope.py +14 -11
  48. zaber_motion/microscopy/objective_changer.py +2 -2
  49. zaber_motion/microscopy/wdi_autofocus_provider.py +1 -1
  50. zaber_motion/product/process.py +6 -6
  51. zaber_motion/product/process_controller.py +1 -1
  52. zaber_motion/version.py +1 -1
  53. {zaber_motion-7.10.0.dist-info → zaber_motion-7.11.0.dist-info}/METADATA +1 -1
  54. {zaber_motion-7.10.0.dist-info → zaber_motion-7.11.0.dist-info}/RECORD +58 -55
  55. zaber_motion_bindings/zaber-motion-core-windows-amd64.dll +0 -0
  56. {zaber_motion-7.10.0.dist-info → zaber_motion-7.11.0.dist-info}/LICENSE.txt +0 -0
  57. {zaber_motion-7.10.0.dist-info → zaber_motion-7.11.0.dist-info}/WHEEL +0 -0
  58. {zaber_motion-7.10.0.dist-info → zaber_motion-7.11.0.dist-info}/top_level.txt +0 -0
zaber_motion/__init__.py CHANGED
@@ -9,6 +9,7 @@ from .tools import Tools as Tools
9
9
  from .unit_table import UnitTable as UnitTable
10
10
  from .dto.axis_address import AxisAddress as AxisAddress
11
11
  from .dto.channel_address import ChannelAddress as ChannelAddress
12
+ from .dto.device_db_source import DeviceDbSource as DeviceDbSource
12
13
  from .dto.device_db_source_type import DeviceDbSourceType as DeviceDbSourceType
13
14
  from .dto.firmware_version import FirmwareVersion as FirmwareVersion
14
15
  from .dto.log_output_mode import LogOutputMode as LogOutputMode
@@ -83,6 +84,7 @@ from .dto.exceptions.command_failed_exception_data import CommandFailedException
83
84
  from .dto.exceptions.command_too_long_exception_data import CommandTooLongExceptionData as CommandTooLongExceptionData
84
85
  from .dto.exceptions.device_address_conflict_exception_data import DeviceAddressConflictExceptionData as DeviceAddressConflictExceptionData
85
86
  from .dto.exceptions.device_db_failed_exception_data import DeviceDbFailedExceptionData as DeviceDbFailedExceptionData
87
+ from .dto.exceptions.device_db_inner_error import DeviceDbInnerError as DeviceDbInnerError
86
88
  from .dto.exceptions.g_code_execution_exception_data import GCodeExecutionExceptionData as GCodeExecutionExceptionData
87
89
  from .dto.exceptions.g_code_syntax_exception_data import GCodeSyntaxExceptionData as GCodeSyntaxExceptionData
88
90
  from .dto.exceptions.invalid_packet_exception_data import InvalidPacketExceptionData as InvalidPacketExceptionData
@@ -23,7 +23,7 @@ class AllAxes:
23
23
  return self._device
24
24
 
25
25
  def __init__(self, device: 'Device'):
26
- self._device = device
26
+ self._device: 'Device' = device
27
27
 
28
28
  def home(
29
29
  self,
@@ -112,11 +112,11 @@ class Axis:
112
112
  return self.__retrieve_label()
113
113
 
114
114
  def __init__(self, device: 'Device', axis_number: int):
115
- self._device = device
116
- self._axis_number = axis_number
117
- self._settings = AxisSettings(self)
118
- self._storage = AxisStorage(self)
119
- self._warnings = Warnings(device, axis_number)
115
+ self._device: 'Device' = device
116
+ self._axis_number: int = axis_number
117
+ self._settings: AxisSettings = AxisSettings(self)
118
+ self._storage: AxisStorage = AxisStorage(self)
119
+ self._warnings: Warnings = Warnings(device, axis_number)
120
120
 
121
121
  def home(
122
122
  self,
@@ -30,7 +30,7 @@ class AxisGroup:
30
30
  """
31
31
  Initializes the group with the axes to be controlled.
32
32
  """
33
- self._axes = axes.copy()
33
+ self._axes: List[Axis] = axes.copy()
34
34
 
35
35
  def home(
36
36
  self
@@ -20,7 +20,7 @@ class AxisSettings:
20
20
  """
21
21
 
22
22
  def __init__(self, axis: 'Axis'):
23
- self._axis = axis
23
+ self._axis: 'Axis' = axis
24
24
 
25
25
  def get(
26
26
  self,
@@ -123,7 +123,7 @@ class Connection:
123
123
  return self.__retrieve_is_open()
124
124
 
125
125
  def __init__(self, interface_id: int):
126
- self._interface_id = interface_id
126
+ self._interface_id: int = interface_id
127
127
  self.__setup_events(0)
128
128
 
129
129
  @staticmethod
@@ -180,17 +180,17 @@ class Device:
180
180
  return self._pvt
181
181
 
182
182
  def __init__(self, connection: 'Connection', device_address: int):
183
- self._connection = connection
184
- self._device_address = device_address
185
- self._settings = DeviceSettings(self)
186
- self._storage = DeviceStorage(self)
187
- self._io = DeviceIO(self)
188
- self._all_axes = AllAxes(self)
189
- self._warnings = Warnings(self, 0)
190
- self._oscilloscope = Oscilloscope(self)
191
- self._triggers = Triggers(self)
192
- self._streams = Streams(self)
193
- self._pvt = Pvt(self)
183
+ self._connection: 'Connection' = connection
184
+ self._device_address: int = device_address
185
+ self._settings: DeviceSettings = DeviceSettings(self)
186
+ self._storage: DeviceStorage = DeviceStorage(self)
187
+ self._io: DeviceIO = DeviceIO(self)
188
+ self._all_axes: AllAxes = AllAxes(self)
189
+ self._warnings: Warnings = Warnings(self, 0)
190
+ self._oscilloscope: Oscilloscope = Oscilloscope(self)
191
+ self._triggers: Triggers = Triggers(self)
192
+ self._streams: Streams = Streams(self)
193
+ self._pvt: Pvt = Pvt(self)
194
194
 
195
195
  def identify(
196
196
  self,
@@ -21,7 +21,7 @@ class DeviceIO:
21
21
  """
22
22
 
23
23
  def __init__(self, device: 'Device'):
24
- self._device = device
24
+ self._device: 'Device' = device
25
25
 
26
26
  def get_channels_info(
27
27
  self
@@ -20,7 +20,7 @@ class DeviceSettings:
20
20
  """
21
21
 
22
22
  def __init__(self, device: 'Device'):
23
- self._device = device
23
+ self._device: 'Device' = device
24
24
 
25
25
  def get(
26
26
  self,
@@ -32,8 +32,8 @@ class Lockstep:
32
32
  return self._lockstep_group_id
33
33
 
34
34
  def __init__(self, device: 'Device', lockstep_group_id: int):
35
- self._device = device
36
- self._lockstep_group_id = lockstep_group_id
35
+ self._device: 'Device' = device
36
+ self._lockstep_group_id: int = lockstep_group_id
37
37
 
38
38
  def enable(
39
39
  self,
@@ -26,7 +26,7 @@ class Oscilloscope:
26
26
  return self._device
27
27
 
28
28
  def __init__(self, device: 'Device'):
29
- self._device = device
29
+ self._device: 'Device' = device
30
30
 
31
31
  def add_channel(
32
32
  self,
@@ -57,7 +57,7 @@ class OscilloscopeData:
57
57
  return self.__retrieve_properties().io_channel
58
58
 
59
59
  def __init__(self, data_id: int):
60
- self._data_id = data_id
60
+ self._data_id: int = data_id
61
61
 
62
62
  def get_timebase(
63
63
  self,
zaber_motion/ascii/pvt.py CHANGED
@@ -26,7 +26,7 @@ class Pvt:
26
26
  return self._device
27
27
 
28
28
  def __init__(self, device: 'Device'):
29
- self._device = device
29
+ self._device: 'Device' = device
30
30
 
31
31
  def get_sequence(
32
32
  self,
@@ -29,8 +29,8 @@ class PvtBuffer:
29
29
  return self._buffer_id
30
30
 
31
31
  def __init__(self, device: 'Device', buffer_id: int):
32
- self._device = device
33
- self._buffer_id = buffer_id
32
+ self._device: 'Device' = device
33
+ self._buffer_id: int = buffer_id
34
34
 
35
35
  def get_content(
36
36
  self
@@ -18,8 +18,8 @@ class PvtIo:
18
18
  """
19
19
 
20
20
  def __init__(self, device: 'Device', stream_id: int):
21
- self._device = device
22
- self._stream_id = stream_id
21
+ self._device: 'Device' = device
22
+ self._stream_id: int = stream_id
23
23
 
24
24
  def set_digital_output(
25
25
  self,
@@ -66,9 +66,9 @@ class PvtSequence:
66
66
  return self._io
67
67
 
68
68
  def __init__(self, device: 'Device', pvt_id: int):
69
- self._device = device
70
- self._pvt_id = pvt_id
71
- self._io = PvtIo(device, pvt_id)
69
+ self._device: 'Device' = device
70
+ self._pvt_id: int = pvt_id
71
+ self._io: PvtIo = PvtIo(device, pvt_id)
72
72
 
73
73
  def setup_live_composite(
74
74
  self,
@@ -1144,11 +1144,12 @@ class PvtSequence:
1144
1144
 
1145
1145
  Units must be wrapped in parens or square braces: ie. (µm/s), [µm/s].
1146
1146
  Additionally, native units are the default if no units are specified.
1147
+ Time values default to milliseconds if no units are provided.
1147
1148
  If no header is included, then column order is assumed to be "T,P1,V1,P2,V2,...".
1148
1149
  In this case the number of columns must be odd.
1149
1150
 
1150
1151
  Args:
1151
- path: The path from which the csv file will be loaded.
1152
+ path: The path to the csv file to load.
1152
1153
 
1153
1154
  Returns:
1154
1155
  The PVT csv data loaded from the file.
@@ -1183,11 +1184,12 @@ class PvtSequence:
1183
1184
 
1184
1185
  Units must be wrapped in parens or square braces: ie. (µm/s), [µm/s].
1185
1186
  Additionally, native units are the default if no units are specified.
1187
+ Time values default to milliseconds if no units are provided.
1186
1188
  If no header is included, then column order is assumed to be "T,P1,V1,P2,V2,...".
1187
1189
  In this case the number of columns must be odd.
1188
1190
 
1189
1191
  Args:
1190
- path: The path from which the csv file will be loaded.
1192
+ path: The path to the csv file to load.
1191
1193
 
1192
1194
  Returns:
1193
1195
  The PVT csv data loaded from the file.
@@ -32,7 +32,7 @@ class ServoTuner:
32
32
  """
33
33
  Creates instance of ServoTuner for the given axis.
34
34
  """
35
- self._axis = axis
35
+ self._axis: Axis = axis
36
36
 
37
37
  def get_startup_paramset(
38
38
  self
@@ -18,7 +18,7 @@ class AxisStorage:
18
18
  """
19
19
 
20
20
  def __init__(self, axis: 'Axis'):
21
- self._axis = axis
21
+ self._axis: 'Axis' = axis
22
22
 
23
23
  def set_string(
24
24
  self,
@@ -474,7 +474,7 @@ class DeviceStorage:
474
474
  """
475
475
 
476
476
  def __init__(self, device: 'Device'):
477
- self._device = device
477
+ self._device: 'Device' = device
478
478
 
479
479
  def set_string(
480
480
  self,
@@ -61,9 +61,9 @@ class Stream:
61
61
  return self._io
62
62
 
63
63
  def __init__(self, device: 'Device', stream_id: int):
64
- self._device = device
65
- self._stream_id = stream_id
66
- self._io = StreamIo(device, stream_id)
64
+ self._device: 'Device' = device
65
+ self._stream_id: int = stream_id
66
+ self._io: StreamIo = StreamIo(device, stream_id)
67
67
 
68
68
  def setup_live_composite(
69
69
  self,
@@ -29,8 +29,8 @@ class StreamBuffer:
29
29
  return self._buffer_id
30
30
 
31
31
  def __init__(self, device: 'Device', buffer_id: int):
32
- self._device = device
33
- self._buffer_id = buffer_id
32
+ self._device: 'Device' = device
33
+ self._buffer_id: int = buffer_id
34
34
 
35
35
  def get_content(
36
36
  self
@@ -18,8 +18,8 @@ class StreamIo:
18
18
  """
19
19
 
20
20
  def __init__(self, device: 'Device', stream_id: int):
21
- self._device = device
22
- self._stream_id = stream_id
21
+ self._device: 'Device' = device
22
+ self._stream_id: int = stream_id
23
23
 
24
24
  def set_digital_output(
25
25
  self,
@@ -26,7 +26,7 @@ class Streams:
26
26
  return self._device
27
27
 
28
28
  def __init__(self, device: 'Device'):
29
- self._device = device
29
+ self._device: 'Device' = device
30
30
 
31
31
  def get_stream(
32
32
  self,
@@ -22,7 +22,7 @@ class Transport:
22
22
  return self._transport_id
23
23
 
24
24
  def __init__(self, transport_id: int):
25
- self._transport_id = transport_id
25
+ self._transport_id: int = transport_id
26
26
 
27
27
  @staticmethod
28
28
  def open() -> 'Transport':
@@ -38,8 +38,8 @@ class Trigger:
38
38
  return self._trigger_number
39
39
 
40
40
  def __init__(self, device: 'Device', trigger_number: int):
41
- self._device = device
42
- self._trigger_number = trigger_number
41
+ self._device: 'Device' = device
42
+ self._trigger_number: int = trigger_number
43
43
 
44
44
  def enable(
45
45
  self,
@@ -26,7 +26,7 @@ class Triggers:
26
26
  return self._device
27
27
 
28
28
  def __init__(self, device: 'Device'):
29
- self._device = device
29
+ self._device: 'Device' = device
30
30
 
31
31
  def get_number_of_triggers(
32
32
  self
@@ -16,8 +16,8 @@ class Warnings:
16
16
  """
17
17
 
18
18
  def __init__(self, device: 'Device', axis_number: int):
19
- self._device = device
20
- self._axis_number = axis_number
19
+ self._device: 'Device' = device
20
+ self._axis_number: int = axis_number
21
21
 
22
22
  def get_flags(
23
23
  self
@@ -75,7 +75,7 @@ class Connection:
75
75
  return self.__retrieve_is_open()
76
76
 
77
77
  def __init__(self, interface_id: int):
78
- self._interface_id = interface_id
78
+ self._interface_id: int = interface_id
79
79
  self.__setup_events()
80
80
 
81
81
  @staticmethod
@@ -124,9 +124,9 @@ class Device:
124
124
  return self.identity.device_type
125
125
 
126
126
  def __init__(self, connection: 'Connection', device_address: int):
127
- self._connection = connection
128
- self._settings = DeviceSettings(self)
129
- self._device_address = device_address
127
+ self._connection: 'Connection' = connection
128
+ self._settings: DeviceSettings = DeviceSettings(self)
129
+ self._device_address: int = device_address
130
130
 
131
131
  def generic_command(
132
132
  self,
@@ -18,7 +18,7 @@ class DeviceSettings:
18
18
  """
19
19
 
20
20
  def __init__(self, device: 'Device'):
21
- self._device = device
21
+ self._device: 'Device' = device
22
22
 
23
23
  def get(
24
24
  self,
@@ -2,6 +2,7 @@
2
2
  # pylint: disable=line-too-long
3
3
  from .axis_address import AxisAddress as AxisAddress
4
4
  from .channel_address import ChannelAddress as ChannelAddress
5
+ from .device_db_source import DeviceDbSource as DeviceDbSource
5
6
  from .device_db_source_type import DeviceDbSourceType as DeviceDbSourceType
6
7
  from .firmware_version import FirmwareVersion as FirmwareVersion
7
8
  from .log_output_mode import LogOutputMode as LogOutputMode
@@ -0,0 +1,66 @@
1
+ # This file is generated. Do not modify by hand.
2
+ # pylint: disable=line-too-long, unused-argument, f-string-without-interpolation, too-many-branches, too-many-statements, unnecessary-pass
3
+ from dataclasses import dataclass
4
+ from typing import Any, Dict, Optional
5
+ import zaber_bson
6
+ from .device_db_source_type import DeviceDbSourceType
7
+
8
+
9
+ @dataclass
10
+ class DeviceDbSource:
11
+ """
12
+ A source that device information can be retrieved from.
13
+ """
14
+
15
+ source_type: DeviceDbSourceType
16
+ """
17
+ Whether the source is a web service or a local DB file.
18
+ """
19
+
20
+ url_or_file_path: Optional[str] = None
21
+ """
22
+ The URL of the web service or path to the local DB file.
23
+ """
24
+
25
+ @staticmethod
26
+ def zero_values() -> 'DeviceDbSource':
27
+ return DeviceDbSource(
28
+ source_type=next(first for first in DeviceDbSourceType),
29
+ url_or_file_path=None,
30
+ )
31
+
32
+ @staticmethod
33
+ def from_binary(data_bytes: bytes) -> 'DeviceDbSource':
34
+ """" Deserialize a binary representation of this class. """
35
+ data = zaber_bson.loads(data_bytes) # type: Dict[str, Any]
36
+ return DeviceDbSource.from_dict(data)
37
+
38
+ def to_binary(self) -> bytes:
39
+ """" Serialize this class to a binary representation. """
40
+ self.validate()
41
+ return zaber_bson.dumps(self.to_dict()) # type: ignore
42
+
43
+ def to_dict(self) -> Dict[str, Any]:
44
+ return {
45
+ 'sourceType': self.source_type.value,
46
+ 'urlOrFilePath': str(self.url_or_file_path) if self.url_or_file_path is not None else None,
47
+ }
48
+
49
+ @staticmethod
50
+ def from_dict(data: Dict[str, Any]) -> 'DeviceDbSource':
51
+ return DeviceDbSource(
52
+ source_type=DeviceDbSourceType(data.get('sourceType')), # type: ignore
53
+ url_or_file_path=data.get('urlOrFilePath'), # type: ignore
54
+ )
55
+
56
+ def validate(self) -> None:
57
+ """" Validates the properties of the instance. """
58
+ if self.source_type is None:
59
+ raise ValueError(f'Property "SourceType" of "DeviceDbSource" is None.')
60
+
61
+ if not isinstance(self.source_type, DeviceDbSourceType):
62
+ raise ValueError(f'Property "SourceType" of "DeviceDbSource" is not an instance of "DeviceDbSourceType".')
63
+
64
+ if self.url_or_file_path is not None:
65
+ if not isinstance(self.url_or_file_path, str):
66
+ raise ValueError(f'Property "UrlOrFilePath" of "DeviceDbSource" is not a string.')
@@ -5,6 +5,7 @@ from .command_failed_exception_data import CommandFailedExceptionData as Command
5
5
  from .command_too_long_exception_data import CommandTooLongExceptionData as CommandTooLongExceptionData
6
6
  from .device_address_conflict_exception_data import DeviceAddressConflictExceptionData as DeviceAddressConflictExceptionData
7
7
  from .device_db_failed_exception_data import DeviceDbFailedExceptionData as DeviceDbFailedExceptionData
8
+ from .device_db_inner_error import DeviceDbInnerError as DeviceDbInnerError
8
9
  from .g_code_execution_exception_data import GCodeExecutionExceptionData as GCodeExecutionExceptionData
9
10
  from .g_code_syntax_exception_data import GCodeSyntaxExceptionData as GCodeSyntaxExceptionData
10
11
  from .invalid_packet_exception_data import InvalidPacketExceptionData as InvalidPacketExceptionData
@@ -1,8 +1,10 @@
1
1
  # This file is generated. Do not modify by hand.
2
2
  # pylint: disable=line-too-long, unused-argument, f-string-without-interpolation, too-many-branches, too-many-statements, unnecessary-pass
3
3
  from dataclasses import dataclass
4
- from typing import Any, Dict
4
+ from typing import Any, Dict, List
5
+ from collections.abc import Iterable
5
6
  import zaber_bson
7
+ from .device_db_inner_error import DeviceDbInnerError
6
8
 
7
9
 
8
10
  @dataclass
@@ -16,10 +18,16 @@ class DeviceDbFailedExceptionData:
16
18
  Code describing type of the error.
17
19
  """
18
20
 
21
+ inner_errors: List[DeviceDbInnerError]
22
+ """
23
+ A list of errors that occurred while trying to access information from the device database.
24
+ """
25
+
19
26
  @staticmethod
20
27
  def zero_values() -> 'DeviceDbFailedExceptionData':
21
28
  return DeviceDbFailedExceptionData(
22
29
  code="",
30
+ inner_errors=[],
23
31
  )
24
32
 
25
33
  @staticmethod
@@ -36,12 +44,14 @@ class DeviceDbFailedExceptionData:
36
44
  def to_dict(self) -> Dict[str, Any]:
37
45
  return {
38
46
  'code': str(self.code or ''),
47
+ 'innerErrors': [item.to_dict() for item in self.inner_errors] if self.inner_errors is not None else [],
39
48
  }
40
49
 
41
50
  @staticmethod
42
51
  def from_dict(data: Dict[str, Any]) -> 'DeviceDbFailedExceptionData':
43
52
  return DeviceDbFailedExceptionData(
44
53
  code=data.get('code'), # type: ignore
54
+ inner_errors=[DeviceDbInnerError.from_dict(item) for item in data.get('innerErrors')], # type: ignore
45
55
  )
46
56
 
47
57
  def validate(self) -> None:
@@ -49,3 +59,16 @@ class DeviceDbFailedExceptionData:
49
59
  if self.code is not None:
50
60
  if not isinstance(self.code, str):
51
61
  raise ValueError(f'Property "Code" of "DeviceDbFailedExceptionData" is not a string.')
62
+
63
+ if self.inner_errors is not None:
64
+ if not isinstance(self.inner_errors, Iterable):
65
+ raise ValueError('Property "InnerErrors" of "DeviceDbFailedExceptionData" is not iterable.')
66
+
67
+ for i, inner_errors_item in enumerate(self.inner_errors):
68
+ if inner_errors_item is None:
69
+ raise ValueError(f'Item {i} in property "InnerErrors" of "DeviceDbFailedExceptionData" is None.')
70
+
71
+ if not isinstance(inner_errors_item, DeviceDbInnerError):
72
+ raise ValueError(f'Item {i} in property "InnerErrors" of "DeviceDbFailedExceptionData" is not an instance of "DeviceDbInnerError".')
73
+
74
+ inner_errors_item.validate()
@@ -0,0 +1,85 @@
1
+ # This file is generated. Do not modify by hand.
2
+ # pylint: disable=line-too-long, unused-argument, f-string-without-interpolation, too-many-branches, too-many-statements, unnecessary-pass
3
+ from dataclasses import dataclass
4
+ from typing import Any, Dict, List
5
+ from collections.abc import Iterable
6
+ import zaber_bson
7
+
8
+
9
+ @dataclass
10
+ class DeviceDbInnerError:
11
+ """
12
+ One of the errors that occurred while trying to access information from the device database.
13
+ """
14
+
15
+ code: str
16
+ """
17
+ Code describing type of the error.
18
+ """
19
+
20
+ message: str
21
+ """
22
+ Description of the error.
23
+ """
24
+
25
+ inner_errors: List['DeviceDbInnerError']
26
+ """
27
+ A list of errors that occurred while trying to access information from the device database.
28
+ """
29
+
30
+ @staticmethod
31
+ def zero_values() -> 'DeviceDbInnerError':
32
+ return DeviceDbInnerError(
33
+ code="",
34
+ message="",
35
+ inner_errors=[],
36
+ )
37
+
38
+ @staticmethod
39
+ def from_binary(data_bytes: bytes) -> 'DeviceDbInnerError':
40
+ """" Deserialize a binary representation of this class. """
41
+ data = zaber_bson.loads(data_bytes) # type: Dict[str, Any]
42
+ return DeviceDbInnerError.from_dict(data)
43
+
44
+ def to_binary(self) -> bytes:
45
+ """" Serialize this class to a binary representation. """
46
+ self.validate()
47
+ return zaber_bson.dumps(self.to_dict()) # type: ignore
48
+
49
+ def to_dict(self) -> Dict[str, Any]:
50
+ return {
51
+ 'code': str(self.code or ''),
52
+ 'message': str(self.message or ''),
53
+ 'innerErrors': [item.to_dict() for item in self.inner_errors] if self.inner_errors is not None else [],
54
+ }
55
+
56
+ @staticmethod
57
+ def from_dict(data: Dict[str, Any]) -> 'DeviceDbInnerError':
58
+ return DeviceDbInnerError(
59
+ code=data.get('code'), # type: ignore
60
+ message=data.get('message'), # type: ignore
61
+ inner_errors=[DeviceDbInnerError.from_dict(item) for item in data.get('innerErrors')], # type: ignore
62
+ )
63
+
64
+ def validate(self) -> None:
65
+ """" Validates the properties of the instance. """
66
+ if self.code is not None:
67
+ if not isinstance(self.code, str):
68
+ raise ValueError(f'Property "Code" of "DeviceDbInnerError" is not a string.')
69
+
70
+ if self.message is not None:
71
+ if not isinstance(self.message, str):
72
+ raise ValueError(f'Property "Message" of "DeviceDbInnerError" is not a string.')
73
+
74
+ if self.inner_errors is not None:
75
+ if not isinstance(self.inner_errors, Iterable):
76
+ raise ValueError('Property "InnerErrors" of "DeviceDbInnerError" is not iterable.')
77
+
78
+ for i, inner_errors_item in enumerate(self.inner_errors):
79
+ if inner_errors_item is None:
80
+ raise ValueError(f'Item {i} in property "InnerErrors" of "DeviceDbInnerError" is None.')
81
+
82
+ if not isinstance(inner_errors_item, DeviceDbInnerError):
83
+ raise ValueError(f'Item {i} in property "InnerErrors" of "DeviceDbInnerError" is not an instance of "DeviceDbInnerError".')
84
+
85
+ inner_errors_item.validate()
@@ -151,6 +151,7 @@ from .renumber_request import RenumberRequest as RenumberRequest
151
151
  from .response_type import ResponseType as ResponseType
152
152
  from .servo_tuning_paramset_response import ServoTuningParamsetResponse as ServoTuningParamsetResponse
153
153
  from .servo_tuning_request import ServoTuningRequest as ServoTuningRequest
154
+ from .set_device_db_layered_sources_request import SetDeviceDbLayeredSourcesRequest as SetDeviceDbLayeredSourcesRequest
154
155
  from .set_device_db_source_request import SetDeviceDbSourceRequest as SetDeviceDbSourceRequest
155
156
  from .set_interface_checksum_enabled_request import SetInterfaceChecksumEnabledRequest as SetInterfaceChecksumEnabledRequest
156
157
  from .set_interface_timeout_request import SetInterfaceTimeoutRequest as SetInterfaceTimeoutRequest
@@ -0,0 +1,56 @@
1
+ # This file is generated. Do not modify by hand.
2
+ # pylint: disable=line-too-long, unused-argument, f-string-without-interpolation, too-many-branches, too-many-statements, unnecessary-pass
3
+ from dataclasses import dataclass, field
4
+ from typing import Any, Dict, List
5
+ from collections.abc import Iterable
6
+ import zaber_bson
7
+ from ..device_db_source import DeviceDbSource
8
+
9
+
10
+ @dataclass
11
+ class SetDeviceDbLayeredSourcesRequest:
12
+
13
+ sources: List[DeviceDbSource] = field(default_factory=list)
14
+
15
+ @staticmethod
16
+ def zero_values() -> 'SetDeviceDbLayeredSourcesRequest':
17
+ return SetDeviceDbLayeredSourcesRequest(
18
+ sources=[],
19
+ )
20
+
21
+ @staticmethod
22
+ def from_binary(data_bytes: bytes) -> 'SetDeviceDbLayeredSourcesRequest':
23
+ """" Deserialize a binary representation of this class. """
24
+ data = zaber_bson.loads(data_bytes) # type: Dict[str, Any]
25
+ return SetDeviceDbLayeredSourcesRequest.from_dict(data)
26
+
27
+ def to_binary(self) -> bytes:
28
+ """" Serialize this class to a binary representation. """
29
+ self.validate()
30
+ return zaber_bson.dumps(self.to_dict()) # type: ignore
31
+
32
+ def to_dict(self) -> Dict[str, Any]:
33
+ return {
34
+ 'sources': [item.to_dict() for item in self.sources] if self.sources is not None else [],
35
+ }
36
+
37
+ @staticmethod
38
+ def from_dict(data: Dict[str, Any]) -> 'SetDeviceDbLayeredSourcesRequest':
39
+ return SetDeviceDbLayeredSourcesRequest(
40
+ sources=[DeviceDbSource.from_dict(item) for item in data.get('sources')], # type: ignore
41
+ )
42
+
43
+ def validate(self) -> None:
44
+ """" Validates the properties of the instance. """
45
+ if self.sources is not None:
46
+ if not isinstance(self.sources, Iterable):
47
+ raise ValueError('Property "Sources" of "SetDeviceDbLayeredSourcesRequest" is not iterable.')
48
+
49
+ for i, sources_item in enumerate(self.sources):
50
+ if sources_item is None:
51
+ raise ValueError(f'Item {i} in property "Sources" of "SetDeviceDbLayeredSourcesRequest" is None.')
52
+
53
+ if not isinstance(sources_item, DeviceDbSource):
54
+ raise ValueError(f'Item {i} in property "Sources" of "SetDeviceDbLayeredSourcesRequest" is not an instance of "DeviceDbSource".')
55
+
56
+ sources_item.validate()
@@ -10,8 +10,14 @@ from ..device_db_source_type import DeviceDbSourceType
10
10
  class SetDeviceDbSourceRequest:
11
11
 
12
12
  source_type: DeviceDbSourceType = next(first for first in DeviceDbSourceType)
13
+ """
14
+ Whether the source is a web service or a local DB file.
15
+ """
13
16
 
14
17
  url_or_file_path: Optional[str] = None
18
+ """
19
+ The URL of the web service or path to the local DB file.
20
+ """
15
21
 
16
22
  @staticmethod
17
23
  def zero_values() -> 'SetDeviceDbSourceRequest':
@@ -68,6 +68,7 @@ from ..dto.exceptions.command_failed_exception_data import CommandFailedExceptio
68
68
  from ..dto.exceptions.command_too_long_exception_data import CommandTooLongExceptionData as CommandTooLongExceptionData
69
69
  from ..dto.exceptions.device_address_conflict_exception_data import DeviceAddressConflictExceptionData as DeviceAddressConflictExceptionData
70
70
  from ..dto.exceptions.device_db_failed_exception_data import DeviceDbFailedExceptionData as DeviceDbFailedExceptionData
71
+ from ..dto.exceptions.device_db_inner_error import DeviceDbInnerError as DeviceDbInnerError
71
72
  from ..dto.exceptions.g_code_execution_exception_data import GCodeExecutionExceptionData as GCodeExecutionExceptionData
72
73
  from ..dto.exceptions.g_code_syntax_exception_data import GCodeSyntaxExceptionData as GCodeSyntaxExceptionData
73
74
  from ..dto.exceptions.invalid_packet_exception_data import InvalidPacketExceptionData as InvalidPacketExceptionData
@@ -35,7 +35,7 @@ class OfflineTranslator:
35
35
  return self.__get_current_coordinate_system()
36
36
 
37
37
  def __init__(self, translator_id: int):
38
- self._translator_id = translator_id
38
+ self._translator_id: int = translator_id
39
39
 
40
40
  @staticmethod
41
41
  def setup(
@@ -34,7 +34,7 @@ class Translator:
34
34
  return self.__get_current_coordinate_system()
35
35
 
36
36
  def __init__(self, translator_id: int):
37
- self._translator_id = translator_id
37
+ self._translator_id: int = translator_id
38
38
 
39
39
  @staticmethod
40
40
  def setup(
zaber_motion/library.py CHANGED
@@ -6,6 +6,7 @@ from .call import call, call_async, call_sync
6
6
  from .dto import requests as dto
7
7
  from .dto.log_output_mode import LogOutputMode
8
8
  from .dto.device_db_source_type import DeviceDbSourceType
9
+ from .dto.device_db_source import DeviceDbSource
9
10
 
10
11
 
11
12
  class Library:
@@ -50,6 +51,22 @@ class Library:
50
51
  )
51
52
  call_sync("device_db/set_source", request)
52
53
 
54
+ @staticmethod
55
+ def set_device_db_sources(
56
+ *sources: DeviceDbSource
57
+ ) -> None:
58
+ """
59
+ Sets a sequence of sources. When the library needs device information,
60
+ it will try each source in the order they are provided.
61
+
62
+ Args:
63
+ sources: The list of sources the library will access data from.
64
+ """
65
+ request = dto.SetDeviceDbLayeredSourcesRequest(
66
+ sources=list(sources),
67
+ )
68
+ call_sync("device_db/set_sources", request)
69
+
53
70
  @staticmethod
54
71
  def enable_device_db_store(
55
72
  store_location: Optional[str] = None
@@ -154,7 +171,7 @@ class Library:
154
171
  """
155
172
  request = dto.CheckVersionRequest(
156
173
  host="py",
157
- version="7.10.0",
174
+ version="7.11.0",
158
175
  )
159
176
  call_sync("library/check_version", request)
160
177
 
@@ -42,9 +42,9 @@ class Autofocus:
42
42
  """
43
43
  Creates instance of `Autofocus` based on the given provider id.
44
44
  """
45
- self._provider_id = provider_id
46
- self._focus_axis = focus_axis
47
- self._objective_turret = objective_turret
45
+ self._provider_id: int = provider_id
46
+ self._focus_axis: Axis = focus_axis
47
+ self._objective_turret: Optional[Device] = objective_turret
48
48
 
49
49
  def set_focus_zero(
50
50
  self
@@ -31,8 +31,8 @@ class CameraTrigger:
31
31
  """
32
32
  Creates instance of `CameraTrigger` based on the given device and digital output channel.
33
33
  """
34
- self._device = device
35
- self._channel = channel
34
+ self._device: Device = device
35
+ self._channel: int = channel
36
36
 
37
37
  def trigger(
38
38
  self,
@@ -23,7 +23,7 @@ class FilterChanger:
23
23
  """
24
24
  Creates instance of `FilterChanger` based on the given device.
25
25
  """
26
- self._device = device
26
+ self._device: Device = device
27
27
 
28
28
  def get_number_of_filters(
29
29
  self
@@ -32,8 +32,8 @@ class Illuminator:
32
32
  Creates instance of `Illuminator` based on the given device.
33
33
  If the device is identified, this constructor will ensure it is an illuminator.
34
34
  """
35
- self._device = device
36
- self._io = DeviceIO(device)
35
+ self._device: Device = device
36
+ self._io: DeviceIO = DeviceIO(device)
37
37
  self.__verify_is_illuminator()
38
38
 
39
39
  def get_channel(
@@ -55,12 +55,12 @@ class IlluminatorChannel:
55
55
  return self._warnings
56
56
 
57
57
  def __init__(self, illuminator: 'Illuminator', channel_number: int):
58
- self._illuminator = illuminator
59
- self._channel_number = channel_number
60
- self._axis = Axis(illuminator.device, channel_number)
61
- self._settings = AxisSettings(self._axis)
62
- self._storage = AxisStorage(self._axis)
63
- self._warnings = Warnings(illuminator.device, channel_number)
58
+ self._illuminator: 'Illuminator' = illuminator
59
+ self._channel_number: int = channel_number
60
+ self._axis: Axis = Axis(illuminator.device, channel_number)
61
+ self._settings: AxisSettings = AxisSettings(self._axis)
62
+ self._storage: AxisStorage = AxisStorage(self._axis)
63
+ self._warnings: Warnings = Warnings(illuminator.device, channel_number)
64
64
 
65
65
  def on(
66
66
  self
@@ -96,27 +96,30 @@ class Microscope:
96
96
  Creates instance of `Microscope` from the given config.
97
97
  Parts are instantiated depending on device addresses in the config.
98
98
  """
99
- self._connection = connection
100
- self._config = MicroscopeConfig.from_binary(MicroscopeConfig.to_binary(config))
101
- self._illuminator = Illuminator(Device(connection, config.illuminator)) if config.illuminator else None
102
- self._focus_axis = Axis(Device(connection, config.focus_axis.device), config.focus_axis.axis)\
99
+ self._connection: Connection = connection
100
+ self._config: MicroscopeConfig = MicroscopeConfig.from_binary(MicroscopeConfig.to_binary(config))
101
+ self._illuminator: Optional[Illuminator] = Illuminator(Device(connection, config.illuminator))\
102
+ if config.illuminator else None
103
+ self._focus_axis: Optional[Axis] = Axis(Device(connection, config.focus_axis.device), config.focus_axis.axis)\
103
104
  if config.focus_axis and config.focus_axis.device else None
104
- self._x_axis = Axis(Device(connection, config.x_axis.device), config.x_axis.axis)\
105
+ self._x_axis: Optional[Axis] = Axis(Device(connection, config.x_axis.device), config.x_axis.axis)\
105
106
  if config.x_axis and config.x_axis.device else None
106
- self._y_axis = Axis(Device(connection, config.y_axis.device), config.y_axis.axis)\
107
+ self._y_axis: Optional[Axis] = Axis(Device(connection, config.y_axis.device), config.y_axis.axis)\
107
108
  if config.y_axis and config.y_axis.device else None
108
- self._plate = AxisGroup([self._x_axis, self._y_axis])\
109
+ self._plate: Optional[AxisGroup] = AxisGroup([self._x_axis, self._y_axis])\
109
110
  if self._x_axis is not None and self._y_axis is not None else None
110
- self._objective_changer = ObjectiveChanger(Device(connection, config.objective_changer), self._focus_axis)\
111
+ self._objective_changer: Optional[ObjectiveChanger] = ObjectiveChanger(
112
+ Device(connection, config.objective_changer),
113
+ self._focus_axis)\
111
114
  if config.objective_changer and self._focus_axis else None
112
- self._filter_changer = FilterChanger(Device(connection, config.filter_changer))\
115
+ self._filter_changer: Optional[FilterChanger] = FilterChanger(Device(connection, config.filter_changer))\
113
116
  if config.filter_changer else None
114
- self._autofocus = Autofocus(
117
+ self._autofocus: Optional[Autofocus] = Autofocus(
115
118
  config.autofocus,
116
119
  self._focus_axis,
117
120
  self._objective_changer.turret if self._objective_changer else None)\
118
121
  if config.autofocus and self._focus_axis else None
119
- self._camera_trigger = CameraTrigger(
122
+ self._camera_trigger: Optional[CameraTrigger] = CameraTrigger(
120
123
  Device(connection, config.camera_trigger.device),
121
124
  config.camera_trigger.channel)\
122
125
  if config.camera_trigger and config.camera_trigger.device else None
@@ -35,8 +35,8 @@ class ObjectiveChanger:
35
35
  Creates instance of `ObjectiveChanger` based on the given device.
36
36
  If the device is identified, this constructor will ensure it is an objective changer.
37
37
  """
38
- self._turret = turret
39
- self._focus_axis = focus_axis
38
+ self._turret: Device = turret
39
+ self._focus_axis: Axis = focus_axis
40
40
  self.__verify_is_changer()
41
41
 
42
42
  @staticmethod
@@ -29,7 +29,7 @@ class WdiAutofocusProvider:
29
29
  return self._provider_id
30
30
 
31
31
  def __init__(self, provider_id: int):
32
- self._provider_id = provider_id
32
+ self._provider_id: int = provider_id
33
33
 
34
34
  @staticmethod
35
35
  def open_tcp(
@@ -63,12 +63,12 @@ class Process:
63
63
  return self._warnings
64
64
 
65
65
  def __init__(self, controller: 'ProcessController', process_number: int):
66
- self._controller = controller
67
- self._process_number = process_number
68
- self._axis = Axis(controller.device, process_number)
69
- self._settings = AxisSettings(self._axis)
70
- self._storage = AxisStorage(self._axis)
71
- self._warnings = Warnings(controller.device, process_number)
66
+ self._controller: 'ProcessController' = controller
67
+ self._process_number: int = process_number
68
+ self._axis: Axis = Axis(controller.device, process_number)
69
+ self._settings: AxisSettings = AxisSettings(self._axis)
70
+ self._storage: AxisStorage = AxisStorage(self._axis)
71
+ self._warnings: Warnings = Warnings(controller.device, process_number)
72
72
 
73
73
  def enable(
74
74
  self,
@@ -28,7 +28,7 @@ class ProcessController:
28
28
  Creates instance of `ProcessController` of the given device.
29
29
  If the device is identified, this constructor will ensure it is a process controller.
30
30
  """
31
- self._device = device
31
+ self._device: Device = device
32
32
  self.__verify_is_process_controller()
33
33
 
34
34
  @staticmethod
zaber_motion/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "7.10.0"
1
+ __version__ = "7.11.0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: zaber_motion
3
- Version: 7.10.0
3
+ Version: 7.11.0
4
4
  Summary: An official library for communicating with Zaber devices.
5
5
  Author-email: "Zaber Technologies Inc." <contact@zaber.com>
6
6
  License: The MIT License (MIT)
@@ -2,55 +2,56 @@ zaber_bson/LICENSE,sha256=n7FWR6VC5ystss8E5JhpgVzVj7ox2YQ3_HEzL7rDzAs,1548
2
2
  zaber_bson/__init__.py,sha256=I41i_Ou7_fHdZS_8Pe-gXvcvvvej3MTOsdEwkJT4H4E,1631
3
3
  zaber_bson/codec.py,sha256=fqZxP1m51dwdVXp2fioJpS2tHOjJQCbOI_pxugyvQnQ,14591
4
4
  zaber_bson/types.py,sha256=TDzH-OVS2SsiiivLLu1K-M-vv4Kk69GpS0cnxi7rxVk,1236
5
- zaber_motion/__init__.py,sha256=y9QG7iNR3EE41fRpeNveeJ_bC5vUOcHdpk8ekC5W9yI,10196
5
+ zaber_motion/__init__.py,sha256=20eeJ47a0Xj4bFZ7oLEuO96UEQetlyGqL_IMytl9X4A,10354
6
6
  zaber_motion/async_utils.py,sha256=3i14u5lwECpctxvwQ7izt0Q_RRwB6UfFtuDOIiM6o28,1505
7
7
  zaber_motion/bindings.py,sha256=vS6PfLmBgDnQrPXsOyXRLqgN7SSCWswmtVxSYV6AgjQ,1505
8
8
  zaber_motion/call.py,sha256=lH72duqcNvzh3Mae5JYZ5kIsyMRftSxSCgmWk9TjYik,5206
9
9
  zaber_motion/convert_exception.py,sha256=TZrdGkmaTR7QOAwoxIQ9sOkHtuVg1bVs-sxbEDn22V8,8487
10
10
  zaber_motion/dto_object.py,sha256=3gJU6AQCjiZcx2o7p2C9VTqw9apOM0i21ssmAM-VmEY,359
11
11
  zaber_motion/events.py,sha256=3Ebp8zEjlRSjKG-b3WVrncZ6juHlKJTNeL-oeYIGpuk,3398
12
- zaber_motion/library.py,sha256=Ie2Lw2I31RpH-FnVrTW0irQKRNI8OPR6nD1s8EuWpys,4935
12
+ zaber_motion/library.py,sha256=DoMQ7i5ZFxHJq8R6919xzrL1lqyqedI9P5J4XNgl6Gk,5497
13
13
  zaber_motion/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
14
  zaber_motion/serialization.py,sha256=Fm53Bd_oAZ7yaTjtBss23Dps3ynWv8wUJT5JVQyqKVs,987
15
15
  zaber_motion/tools.py,sha256=O9IGJNGaaG7Sz2jGkexdJfgyJ5L4vsLXJKFUhZlKlCI,2213
16
16
  zaber_motion/unit_table.py,sha256=FV-6VegAm499BJBJ4tdXgkP2Hl2h-fIlLJWkMrHlPAM,2497
17
17
  zaber_motion/units.py,sha256=RCkeTZwhZFJg2hffBJFweAhDHLHZOkLUPel0e1Wzi3g,10853
18
- zaber_motion/version.py,sha256=GHzDQ26ZrFjhBusV3W0P0PcmVjJ349q32G_UDe84Q6E,23
18
+ zaber_motion/version.py,sha256=x9MCn4dCG1RFCLIu1cexyXZxTu8pEkj0bwIVzIIVoxY,23
19
19
  zaber_motion/ascii/__init__.py,sha256=hB91yrB-iTGuk270V97TQK09fMiMUwL3FEIKhLqMJfc,4848
20
- zaber_motion/ascii/all_axes.py,sha256=ob_LjrgU9jNCW3t9k0U7QSa-92ap9HspmHCsv7dkzgI,10783
21
- zaber_motion/ascii/axis.py,sha256=Ks5MGJRUeKIwyUZOQ-13-fWpjt3ZJu9oyoGNT2yEJSg,57618
22
- zaber_motion/ascii/axis_group.py,sha256=mcjxN3jhpKNaFB3rg60smi6Qr_75JPRXq2v6YDqjlfo,12927
23
- zaber_motion/ascii/axis_settings.py,sha256=iFNWxyrjS5xXPMwTaF4UR5FeePshN3wyeFfRJkLGjEU,23473
24
- zaber_motion/ascii/connection.py,sha256=3K3JgoSAXN3yr__TcaI-YD71TmWQ34ngK-F2lpibIaY,38492
25
- zaber_motion/ascii/device.py,sha256=Bmp-VPzOdUBRvuNkDd7JMFiO2bPbWInR1ZwadxaBwVc,29623
26
- zaber_motion/ascii/device_io.py,sha256=ikWpyn8sFI03HClJcJDw7j-4ARwE286biZvUFwZIUHA,39378
27
- zaber_motion/ascii/device_settings.py,sha256=6mztNJgFlcRzKmffe4xrxZ1BSVoJdSA7dRboPpHYk5U,22012
28
- zaber_motion/ascii/lockstep.py,sha256=SvmrfZIEu3jhCaxKVHUy8FuEAIaZpwYq60jZsqUa8O4,43447
29
- zaber_motion/ascii/oscilloscope.py,sha256=07lpLISv014Uk5mZ7cnY63Nb4KDj2NF_Jd9GLSQ4mPg,20306
30
- zaber_motion/ascii/oscilloscope_data.py,sha256=YEOJH4yY_4R2Anm2-OOZXt_3jxFUMAD3RQNcSZ8qXTI,7225
31
- zaber_motion/ascii/pvt.py,sha256=_D_S6JenjZ_DC-agtmyp5rx__utRV63T0eKA7sPcguE,2865
32
- zaber_motion/ascii/pvt_buffer.py,sha256=wrxf3n2hNL82QdyCiBG3c3jDwQb9tnDpaxBW1aiY_-s,3165
33
- zaber_motion/ascii/pvt_io.py,sha256=FiwJG6FQTPPtLRgH3AQhjfHRwWmDwiRri77dgyz4zXs,22237
34
- zaber_motion/ascii/pvt_sequence.py,sha256=B4gAYjKtBkp4DGj30RxXv6aNOgtFlBly-ZacvclqHug,51329
35
- zaber_motion/ascii/servo_tuner.py,sha256=uV3UxXIgz1xx-_lRaaxMVjF45Fp1AGpPgO1vKTYx8ro,23339
20
+ zaber_motion/ascii/all_axes.py,sha256=ZdeufI6s3Yxtf9S0FbCZQNklKqFXIEEEbLE2-ITuASA,10793
21
+ zaber_motion/ascii/axis.py,sha256=nd1gy84lnKxaEktTEtBvCF6DVsfdfds6dflQJ1P9XCI,57670
22
+ zaber_motion/ascii/axis_group.py,sha256=dmITE1fLE919oIWnuf-ft-sM2-9CN0dZ13j3NUGqpyU,12939
23
+ zaber_motion/ascii/axis_settings.py,sha256=dg1F08b0E4RC7fGZI4Gn6nq0BeUz8g2TruvIok_KFOg,23481
24
+ zaber_motion/ascii/connection.py,sha256=aaI2d5IIL1XYdWR-L7E-GscQHKz3O8h107um9XB31tk,38497
25
+ zaber_motion/ascii/device.py,sha256=HjNmrqJe1wCCEzfZEKl8Owp1Qitox8eUTPdt85pQrPA,29740
26
+ zaber_motion/ascii/device_io.py,sha256=T0uZsSGk5OdLkb2ZRFxmHP9jHtzZb85J21J80FFAKYo,39388
27
+ zaber_motion/ascii/device_settings.py,sha256=RLt4iojoTZ757LnDiVl3fHm-cGaDCmKQ5luZuPFY3Xs,22022
28
+ zaber_motion/ascii/lockstep.py,sha256=ijO3foMhQmh5i9DeydK7Gpr-DK-Vz2wKVS472j7Qa6o,43462
29
+ zaber_motion/ascii/oscilloscope.py,sha256=QGIIDiSdMy1Lqqmeu_UpWJakxxjzVbG6BAHHIroE0mg,20316
30
+ zaber_motion/ascii/oscilloscope_data.py,sha256=Y2Qv9uuLnGix7SEnPAlQUkzwSgm-krPqGVLoMzyHBCA,7230
31
+ zaber_motion/ascii/pvt.py,sha256=WMfbmJlJAm-eEPJxUPNlpOXYyzuJPBFeeDo2bCfoATE,2875
32
+ zaber_motion/ascii/pvt_buffer.py,sha256=XClBbo593Y10Q2B0a1xe1TPqKwnCQp5DhIkyqNK07vU,3180
33
+ zaber_motion/ascii/pvt_io.py,sha256=mRNokeYvZmqZul5M27n5i38shpv129hmqjdeiSKfNwo,22252
34
+ zaber_motion/ascii/pvt_sequence.py,sha256=zitbIQQGGKafI_HeEB61d1ICIMDBQx0PvjgeyUUfGHM,51461
35
+ zaber_motion/ascii/servo_tuner.py,sha256=AryjPcrBqQ9xSk2INuIPAFIjxN-HmqUBCrWYmvNpezs,23345
36
36
  zaber_motion/ascii/setting_constants.py,sha256=ztScMyFkFec1F9zLvmmD4jysXDFXE5dfHF3uByPqnkw,29929
37
- zaber_motion/ascii/storage.py,sha256=nB4adzPAZI4YL3lUgB3hrFHmP7Rof8dl_b_AsgOGEP0,26131
38
- zaber_motion/ascii/stream.py,sha256=dwzm4OQQhedQsi0NPWi3_hvYaP1cK4zN192zeMnMbnE,80492
39
- zaber_motion/ascii/stream_buffer.py,sha256=4cLM917qAw393H90V3mvEnT2X5NKCl37ZvSqGc092gU,3079
40
- zaber_motion/ascii/stream_io.py,sha256=PSQtWs9xsEjahrNu7h1NX9D3lGeC2Z_9JwXDO6Zp0CY,25058
41
- zaber_motion/ascii/streams.py,sha256=IrFZuRtO16W9kZDtWw6GVxMGcWkku1YianWHbSU7Kx0,2853
42
- zaber_motion/ascii/transport.py,sha256=2mCKRCYbIB44IkCLmUnk1kzEdOBMumUryyz6Mx1zNbI,5858
43
- zaber_motion/ascii/trigger.py,sha256=_h3uZCCZHg53qW2Nvymj-vT9U-LUY4h17XZSkKRvaCQ,29842
44
- zaber_motion/ascii/triggers.py,sha256=cmrZ8AetASPNi0amdXzThINIl50yKnsS6t3VmlJNZBU,7277
37
+ zaber_motion/ascii/storage.py,sha256=tJEpxUdOn7qfE1UGbEmwuoB864K5HHjQe6tTwG5tbkE,26149
38
+ zaber_motion/ascii/stream.py,sha256=c3bKOcV4xn7Rv7FnkTMoUwtN49BMdd0U2Rl25A5vwYg,80517
39
+ zaber_motion/ascii/stream_buffer.py,sha256=TJrNJhNdsR8wPCTSqMn-AVkf2y7utWQbkLz68ndKEH8,3094
40
+ zaber_motion/ascii/stream_io.py,sha256=gpiSZL5p8OfRi3jQ87SyCb8E8MkPwUUpq26umiw2AAU,25073
41
+ zaber_motion/ascii/streams.py,sha256=o5FQGaSbgSHPKz6d6nNExyO2kTERwE4iXkn3dQDz8kM,2863
42
+ zaber_motion/ascii/transport.py,sha256=R_ZMlDaj_j5U3TFE45vossoO5JHylU2zSUaT6_5FItc,5863
43
+ zaber_motion/ascii/trigger.py,sha256=rp2DsfPd8PUADrPvcORkINAz62PXHMpI67tORycz5XA,29857
44
+ zaber_motion/ascii/triggers.py,sha256=kOdDCbAOk4Rigbe2uxBZZGHlIw5plqwK53TnoNz0HZM,7287
45
45
  zaber_motion/ascii/warning_flags.py,sha256=A18Yf3-YTnxWZzIrQwYQdqrelRA6Wr0m1kRMbRsQlYE,2855
46
- zaber_motion/ascii/warnings.py,sha256=D2p8C0GCIlId91nqKOUFn2RrxASPa6ZoSVt5Cbb5rdI,5061
46
+ zaber_motion/ascii/warnings.py,sha256=lMXwqp7CT9od11WDWJrXwKvAokVN9x3OwDDtv7mGok4,5076
47
47
  zaber_motion/binary/__init__.py,sha256=Tsv_GJjkOYiFiNs8Eko8lkfyM2bSgezYxQ3l89PxFgQ,859
48
- zaber_motion/binary/connection.py,sha256=xDWTkebabdp-2Tc3YTr32raplUvw1h-QIW8MgWKAcD4,21400
49
- zaber_motion/binary/device.py,sha256=fhFASJx8rU98L5Z7anEtsZ0f_C_LzGJknNZvio_RKjc,29238
50
- zaber_motion/binary/device_settings.py,sha256=Ez-uB0785Pqhd_svQMDqngQZSGED7UI3-MrjER1TB2w,3349
51
- zaber_motion/dto/__init__.py,sha256=l17g_3wPK1-5CYG4oJ-CXc86tW5FaPAM2OBVmEo06vo,582
48
+ zaber_motion/binary/connection.py,sha256=5yGUgdN6xM5CPU2W4aYzi5A4HbQGf76Uagrfw2iYpXA,21405
49
+ zaber_motion/binary/device.py,sha256=uwU8BuceJANGWTQFb_4HL8P6OSaf5KNMwRZPdbvZI6o,29273
50
+ zaber_motion/binary/device_settings.py,sha256=vF0GVC7IIKR6HjRqwdxfF2W4YHYodRmWuriM2uQRByo,3359
51
+ zaber_motion/dto/__init__.py,sha256=9VbPLqxBM8Mxidq1AZmV4O6-srRQE7SC_rExNm6XQ7A,645
52
52
  zaber_motion/dto/axis_address.py,sha256=WNmCifXFH3rqmdBbPN-Fc67_Qbqx5Q3KWiEYSN5UxHo,2305
53
53
  zaber_motion/dto/channel_address.py,sha256=D732s_DnRDBHGLOeqBLZKKidaoyoBYIfIGUqGI8vYmE,2395
54
+ zaber_motion/dto/device_db_source.py,sha256=2Qpyr9SbKDRlDJPregiFUfX-dme5AWVeTdkQOpD9FAQ,2438
54
55
  zaber_motion/dto/device_db_source_type.py,sha256=tDwfDZdiolaumXm9iBWxqg4Qghh4rC-PgUNdDxaaJEQ,193
55
56
  zaber_motion/dto/firmware_version.py,sha256=8PVjumVwXCdMUK6axOJd8ho8YkIi2K5fprhGk-S40q8,2969
56
57
  zaber_motion/dto/log_output_mode.py,sha256=cJuF_Xfmulvpek8UYExt7Re9uwFyZPMQgYCkoYufoU4,215
@@ -112,12 +113,13 @@ zaber_motion/dto/binary/message.py,sha256=BklnjcSuzCJUXpsaH7bViZo3nwNL6hLm8sYdeM
112
113
  zaber_motion/dto/binary/reply_code.py,sha256=8bLESEmiX9gJyCoVYV7baMKjg9dHWLeaJlCQU1_S8MM,351
113
114
  zaber_motion/dto/binary/reply_only_event.py,sha256=7LKlsuEoNxYx9qXfU-e6MYWAtQjk1FC1n-kw-LpWkeU,3221
114
115
  zaber_motion/dto/binary/unknown_response_event.py,sha256=v7K3JVzG_Hyjhvr93rsaMLUdXcPuPTI5UcJ9kto0584,3317
115
- zaber_motion/dto/exceptions/__init__.py,sha256=Qmu_qbbTm3M8uEHZxc1W53Q4T8fguxVfe-U-aEoWjyQ,2354
116
+ zaber_motion/dto/exceptions/__init__.py,sha256=ozYUrcyW-0OLJfrPsqZ1Ez-GPEipba-g1aMGwt8BNWU,2430
116
117
  zaber_motion/dto/exceptions/binary_command_failed_exception_data.py,sha256=J0URVqOTQjzUYcuSZiGIZIFDHCoVkQbX17wwSfCcIvg,2082
117
118
  zaber_motion/dto/exceptions/command_failed_exception_data.py,sha256=y3HkrVsIkcCor5UozCHnGONkkkjFKUCM0-DJfkCDyRc,5496
118
119
  zaber_motion/dto/exceptions/command_too_long_exception_data.py,sha256=72ntpykdzHOc74-LfnhI5hnUKfENmzHqcjtVBxFlztg,3652
119
120
  zaber_motion/dto/exceptions/device_address_conflict_exception_data.py,sha256=kiCtmd3nhWQml_vopWTMtQZLvz1VUL9se8WCssOtemM,2675
120
- zaber_motion/dto/exceptions/device_db_failed_exception_data.py,sha256=aVrOrTOCtDKewF-4eLRV2r0NQmkAPDNiJuS0uzLYmIM,1674
121
+ zaber_motion/dto/exceptions/device_db_failed_exception_data.py,sha256=Pukdow95PZffkk3iDpQXbBgC-dtc2oWkAZ0ibgli0mQ,2908
122
+ zaber_motion/dto/exceptions/device_db_inner_error.py,sha256=P_lV49Wz1lakx8oh6fCOo9ONmBialCWJ4NHDbctuPHk,3172
121
123
  zaber_motion/dto/exceptions/g_code_execution_exception_data.py,sha256=TjqExhhCpubibHE3AMCkggA0x6DCgz1wnKlUJevtqiQ,2744
122
124
  zaber_motion/dto/exceptions/g_code_syntax_exception_data.py,sha256=OAqLHrbrQMWQLMAaBlRgo7yYU11xnovzeDp35ITbSbM,2702
123
125
  zaber_motion/dto/exceptions/invalid_packet_exception_data.py,sha256=ymSygenzyuG26wDLmgXAQjDsPHDhrwYavEFzao3zpHk,2077
@@ -151,7 +153,7 @@ zaber_motion/dto/product/__init__.py,sha256=M7m313pDn0mT99u1qPhrmit0N3wN3D3ylnIQ
151
153
  zaber_motion/dto/product/process_controller_mode.py,sha256=JSfKRAOKGWBXpKbUAvYy3IDGtWyRoz4c5sXKXpiHu_4,228
152
154
  zaber_motion/dto/product/process_controller_source.py,sha256=yz3yRp5AZP71bYB7ivY9q3ZuGIZkJ7hxt13G-XpPFyc,2577
153
155
  zaber_motion/dto/product/process_controller_source_sensor.py,sha256=z2nfX4jq79cAmnbr7Wz9GKKa1CoSZfEFakHgqfKpJoM,217
154
- zaber_motion/dto/requests/__init__.py,sha256=v5x-eab0KwKVFBnSTrkXM-np1JPGXL9BhkFWXfanGT0,23260
156
+ zaber_motion/dto/requests/__init__.py,sha256=sqgxbzP1x0_kzjzDertiagx_sCmJAIHN2BgNbvoxIzk,23380
155
157
  zaber_motion/dto/requests/alert_event_wrapper.py,sha256=Mev5LIbaksLReCI3VrlNA3_B7xWjQU5mcm0sLjRmzt4,3053
156
158
  zaber_motion/dto/requests/autofocus_focus_request.py,sha256=3rZ5-s6dc6BV_DukDa-Fi2BL30QKAOd-K_9dP-QWOZ0,5272
157
159
  zaber_motion/dto/requests/autofocus_get_objective_params_request.py,sha256=0E0X4PuQVJ8Yt3LZzUC-nueGFQ-mEMpcSRUzf5ta6mw,5351
@@ -304,7 +306,8 @@ zaber_motion/dto/requests/renumber_request.py,sha256=jQbw_Q1Z2YWDyLDypDKE2b44KV9
304
306
  zaber_motion/dto/requests/response_type.py,sha256=7tUcqtyLPtnVkr7A6jIs0A3aVcRkyQD0F3woHT_wzgE,125
305
307
  zaber_motion/dto/requests/servo_tuning_paramset_response.py,sha256=N7WG013uQoTb0DHgBMjjqhktq_cddNfhBBVNNmMcBcs,1890
306
308
  zaber_motion/dto/requests/servo_tuning_request.py,sha256=PPB1Dge6T-2huUo3c1oJkWuCxflmxKRPtdJXJQw-Mpk,3554
307
- zaber_motion/dto/requests/set_device_db_source_request.py,sha256=WTwcxMSjy-i0PRhiP9SfQyw-8tKomoYMZ0vXD8VOQBI,2356
309
+ zaber_motion/dto/requests/set_device_db_layered_sources_request.py,sha256=a6YL0qjTawYDhharermCocsT5RNf8z2shliddcopny4,2334
310
+ zaber_motion/dto/requests/set_device_db_source_request.py,sha256=s8kDP7_By1Cez_4jTUFwb1WFhcsmJiMofNmKNoRKjEQ,2509
308
311
  zaber_motion/dto/requests/set_interface_checksum_enabled_request.py,sha256=ohqCpXmg9ZZtT8-prv8ODLlq2jUUpUamWrmiFYN3ODM,2145
309
312
  zaber_motion/dto/requests/set_interface_timeout_request.py,sha256=juXp3dBZgCLVXGHy17RIA9208eNqXemi4PGM7CdUxLA,2493
310
313
  zaber_motion/dto/requests/set_internal_mode_request.py,sha256=LiQPmGauNuJfr8_e1-cE40LuVmCo6lt66pSRHmoPMvQ,1344
@@ -401,7 +404,7 @@ zaber_motion/dto/requests/wait_to_clear_warnings_request.py,sha256=0V0RDid4I6Qjj
401
404
  zaber_motion/dto/requests/wait_to_respond_request.py,sha256=pWObRotk-p2vV2RqrTxlFHXwFrjCDxYnU2ejdEhAJdw,2839
402
405
  zaber_motion/dto/requests/wdi_generic_request.py,sha256=Lcv859aSxWz3oiVzZNPLYqtihn-DCU8wJeNe9fwqpK8,5429
403
406
  zaber_motion/dto/requests/wdi_get_status_response.py,sha256=z3uWQm2B3ILVtdouXCFiAL3oR9DLq4TbsmdXuPBeics,1921
404
- zaber_motion/exceptions/__init__.py,sha256=LjK4CSzpTGL4liTc5wfiVAStoIUfO_8bNRPfYQXl_5A,8634
407
+ zaber_motion/exceptions/__init__.py,sha256=x3XeKreBFjJ3DR7LAoQ_Iw0eNWVB0FFJUDDDt-BmvwI,8726
405
408
  zaber_motion/exceptions/bad_command_exception.py,sha256=7Exn_kkVrmm8CtdGauCxNJsr_wP1d6CvMdQNUQraWsE,298
406
409
  zaber_motion/exceptions/bad_data_exception.py,sha256=bLksIisdtBiUVBxi4Jm9CIvdNF8NjZkKjORBTUOxx2o,336
407
410
  zaber_motion/exceptions/binary_command_failed_exception.py,sha256=1LaLjeoJte5EGrb6Oa90WdLwovW0rLfMA_FEemnp6X4,976
@@ -466,23 +469,23 @@ zaber_motion/exceptions/timeout_exception.py,sha256=XE0GawEZtTCtEXNMGTO0Llt12aqt
466
469
  zaber_motion/exceptions/transport_already_used_exception.py,sha256=mPhLA5Ojbqf8MmFS7mDCzmdQWfR2fLoMouXi2XmTYU4,320
467
470
  zaber_motion/exceptions/unknown_request_exception.py,sha256=Z7zQJQkDwpBhixZoe96cuh1-146lzNRrbbOQXz4Nnh0,335
468
471
  zaber_motion/gcode/__init__.py,sha256=0HttpBgiGu028vwoLpyttuvDKAHZYy6kcNT2qDbJFN8,753
469
- zaber_motion/gcode/offline_translator.py,sha256=8UXBPkYnA5TH39nD5GnIXjL3E851Q8lUEPtoa5hgfwE,12118
470
- zaber_motion/gcode/translator.py,sha256=-uxQVKcEFlySm7Mw3C53AFnd8tnAfE0XzexTfa0vh64,12835
472
+ zaber_motion/gcode/offline_translator.py,sha256=zFob28ih3wuxAhCtAixLxgth1kVFFB-xVT1s65YcOJ8,12123
473
+ zaber_motion/gcode/translator.py,sha256=8U8FLvQm1eagubjv-ywdpcJL8orZv4BWa3zk4GoSl6g,12840
471
474
  zaber_motion/microscopy/__init__.py,sha256=uSXl3xMPYzKuBfyNXkMdBa4oLSUFjG09y98He68IgUs,1016
472
- zaber_motion/microscopy/autofocus.py,sha256=0iwqZgQa_LZ-7brcf37RobCnM3t30ECMPKEqhLyGOtU,23715
473
- zaber_motion/microscopy/camera_trigger.py,sha256=BIklwo0d7NL_CXb6P8w5ToEUBolQavbDNKCffLjJev0,3462
474
- zaber_motion/microscopy/filter_changer.py,sha256=VRkLwKf1-TzrDtFR5BLi58pzFnSBej8bk6jy3-KcU64,4651
475
- zaber_motion/microscopy/illuminator.py,sha256=778WTQ1HfZG2MiLVug8tv1ZipJBInlNl-LOp9d1WxS0,4151
476
- zaber_motion/microscopy/illuminator_channel.py,sha256=146pzU8Xz3Kj0_KIG5BjLQVNPPO3keALgu6KJYFGFMI,20451
477
- zaber_motion/microscopy/microscope.py,sha256=cza7f0hqs5maNOyEIzNrtQ0iRt572TR-rjbmgVEAgTU,8602
478
- zaber_motion/microscopy/objective_changer.py,sha256=rTI7-bytHqcbc0iLmY6Eytv4EXr_Jgk78dj-Y8tj_yw,13543
479
- zaber_motion/microscopy/wdi_autofocus_provider.py,sha256=V-cDWA9SJXQ1WRNCMT78VoMwbhd-5d948VeofKmZSlM,11490
475
+ zaber_motion/microscopy/autofocus.py,sha256=_tLF_B3jS_Id1AZ3frkYsEV2xGMsOQbBUT3614nWT9k,23744
476
+ zaber_motion/microscopy/camera_trigger.py,sha256=5Hq-5lfNzVF5-H5r5EvH9ZU2IVa7Ilj_RT-XQ3iH2G8,3475
477
+ zaber_motion/microscopy/filter_changer.py,sha256=UPo-YxqUcBxCzA5gKV0UMK2kCJksO24qczFSl5UtiwA,4659
478
+ zaber_motion/microscopy/illuminator.py,sha256=1_Rwc9oQp82MzqbACbRMGHWZvzhfHyvUbip5xvClunI,4169
479
+ zaber_motion/microscopy/illuminator_channel.py,sha256=8qOMB_X17wGB5JYYhumcy7VtGCeE9iGb4SZKOT_VJtE,20514
480
+ zaber_motion/microscopy/microscope.py,sha256=R_sS8iyZWnrFH9Tf0hh37a5w4oKAM3WQjmm8Qy_V2D8,8861
481
+ zaber_motion/microscopy/objective_changer.py,sha256=sgz6XmM75wOxmyLrM0tfwH2ek4VoGvaX0K53azMVCjM,13557
482
+ zaber_motion/microscopy/wdi_autofocus_provider.py,sha256=fAMVVlfzpB0IpnDikj_sWFbQ5eNCSAJ_jX1ky8FXgtg,11495
480
483
  zaber_motion/product/__init__.py,sha256=lno0C-gLBsHNPGnjp6bbXHX0cEk27cA8uFjq5vzmE9Q,531
481
- zaber_motion/product/process.py,sha256=42wF55BvUcUY36_6HvpdWLC0b2ap6suoCItpR88pp14,27458
482
- zaber_motion/product/process_controller.py,sha256=a5BM42BP82gcHtub98SkUsxsRoKByNbYmaBXzRYT1ao,4185
483
- zaber_motion_bindings/zaber-motion-core-windows-amd64.dll,sha256=toCJmmHEMBa4C9W_Yhq3qR93FnzmTGuhaMliKonEZJo,15440384
484
- zaber_motion-7.10.0.dist-info/LICENSE.txt,sha256=xNj9QcKqsI3WK5EBPeYbQAiDcnVe4xmIpCy65NYNVhA,109244
485
- zaber_motion-7.10.0.dist-info/METADATA,sha256=6XQsps36uMhEczmIqRjR1kt7Fydmv-AGa--pAP_7rrw,129816
486
- zaber_motion-7.10.0.dist-info/WHEEL,sha256=EsfqhE0qd6WfVs85_gPJMVnnwjseveFUmeew0JBezok,97
487
- zaber_motion-7.10.0.dist-info/top_level.txt,sha256=ypgkPvPad6Oge50CT6unnvxCEliKUB6olL6CUUER1SA,51
488
- zaber_motion-7.10.0.dist-info/RECORD,,
484
+ zaber_motion/product/process.py,sha256=RGDxS_kyb-66RJ5bWmRtamp0zARPigcwN-zVcVtl7MQ,27527
485
+ zaber_motion/product/process_controller.py,sha256=RQ1rXrdvslqB-3UIXLfLD3D5vfr1xfT8B5jOmTXf-V0,4193
486
+ zaber_motion_bindings/zaber-motion-core-windows-amd64.dll,sha256=ByBuzOT4QicSJU9bZCbqHzEvZowV0qnNQp1-pi3GBhU,15677952
487
+ zaber_motion-7.11.0.dist-info/LICENSE.txt,sha256=xNj9QcKqsI3WK5EBPeYbQAiDcnVe4xmIpCy65NYNVhA,109244
488
+ zaber_motion-7.11.0.dist-info/METADATA,sha256=NU9vH9Ci6ca_IvxigQiMDoxOM2z5azQXgO0nCwxUyn0,129816
489
+ zaber_motion-7.11.0.dist-info/WHEEL,sha256=EsfqhE0qd6WfVs85_gPJMVnnwjseveFUmeew0JBezok,97
490
+ zaber_motion-7.11.0.dist-info/top_level.txt,sha256=ypgkPvPad6Oge50CT6unnvxCEliKUB6olL6CUUER1SA,51
491
+ zaber_motion-7.11.0.dist-info/RECORD,,