pymodaq 5.0.0__py3-none-any.whl → 5.0.1__py3-none-any.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.
Potentially problematic release.
This version of pymodaq might be problematic. Click here for more details.
- pymodaq/__init__.py +55 -89
- pymodaq/control_modules/daq_move.py +123 -52
- pymodaq/control_modules/daq_move_ui.py +42 -11
- pymodaq/control_modules/daq_viewer.py +30 -13
- pymodaq/control_modules/move_utility_classes.py +345 -78
- pymodaq/control_modules/utils.py +26 -9
- pymodaq/control_modules/viewer_utility_classes.py +51 -14
- pymodaq/daq_utils/daq_utils.py +6 -0
- pymodaq/dashboard.py +532 -263
- pymodaq/examples/qt_less_standalone_module.py +128 -0
- pymodaq/extensions/bayesian/bayesian_optimisation.py +30 -21
- pymodaq/extensions/bayesian/utils.py +6 -3
- pymodaq/extensions/daq_logger/__init__.py +1 -0
- pymodaq/extensions/daq_logger/daq_logger.py +4 -5
- pymodaq/extensions/daq_scan.py +1 -3
- pymodaq/extensions/daq_scan_ui.py +7 -9
- pymodaq/extensions/pid/__init__.py +0 -1
- pymodaq/extensions/pid/actuator_controller.py +13 -0
- pymodaq/extensions/pid/daq_move_PID.py +25 -46
- pymodaq/extensions/pid/pid_controller.py +48 -40
- pymodaq/extensions/pid/utils.py +3 -2
- pymodaq/extensions/utils.py +41 -7
- pymodaq/resources/setup_plugin.py +1 -0
- pymodaq/updater.py +107 -0
- pymodaq/utils/chrono_timer.py +6 -7
- pymodaq/utils/daq_utils.py +6 -3
- pymodaq/utils/data.py +11 -16
- pymodaq/utils/enums.py +6 -0
- pymodaq/utils/gui_utils/loader_utils.py +27 -2
- pymodaq/utils/gui_utils/utils.py +9 -12
- pymodaq/utils/gui_utils/widgets/lcd.py +8 -0
- pymodaq/utils/leco/daq_move_LECODirector.py +21 -14
- pymodaq/utils/leco/daq_xDviewer_LECODirector.py +13 -8
- pymodaq/utils/leco/pymodaq_listener.py +8 -7
- pymodaq/utils/leco/utils.py +33 -7
- pymodaq/utils/managers/modules_manager.py +20 -10
- pymodaq/utils/managers/overshoot_manager.py +45 -1
- pymodaq/utils/managers/preset_manager.py +22 -46
- pymodaq/utils/managers/preset_manager_utils.py +17 -13
- pymodaq/utils/managers/remote_manager.py +1 -1
- pymodaq/utils/messenger.py +6 -0
- pymodaq/utils/parameter/__init__.py +5 -1
- pymodaq/utils/tcp_ip/mysocket.py +4 -110
- pymodaq/utils/tcp_ip/serializer.py +4 -769
- pymodaq/utils/tcp_ip/tcp_server_client.py +5 -5
- pymodaq-5.0.1.dist-info/METADATA +242 -0
- {pymodaq-5.0.0.dist-info → pymodaq-5.0.1.dist-info}/RECORD +51 -52
- {pymodaq-5.0.0.dist-info → pymodaq-5.0.1.dist-info}/WHEEL +1 -1
- {pymodaq-5.0.0.dist-info → pymodaq-5.0.1.dist-info}/entry_points.txt +1 -0
- pymodaq/examples/custom_app.py +0 -255
- pymodaq/examples/custom_viewer.py +0 -112
- pymodaq/examples/parameter_ex.py +0 -158
- pymodaq/examples/preset_MockCamera.xml +0 -1
- pymodaq/post_treatment/daq_measurement/daq_measurement_GUI.py +0 -142
- pymodaq/post_treatment/daq_measurement/daq_measurement_GUI.ui +0 -232
- pymodaq/post_treatment/daq_measurement/daq_measurement_main.py +0 -391
- pymodaq/post_treatment/daq_measurement/process_from_QtDesigner_DAQ_Measurement_GUI.bat +0 -2
- pymodaq-5.0.0.dist-info/METADATA +0 -166
- /pymodaq/{post_treatment/daq_measurement → daq_utils}/__init__.py +0 -0
- {pymodaq-5.0.0.dist-info → pymodaq-5.0.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -24,8 +24,8 @@ from pymodaq_gui.parameter import Parameter
|
|
|
24
24
|
from pymodaq_data.data import DataToExport
|
|
25
25
|
|
|
26
26
|
from pymodaq.utils.data import DataFromPlugins, DataActuator
|
|
27
|
-
from
|
|
28
|
-
from
|
|
27
|
+
from pymodaq_utils.serialize.mysocket import Socket
|
|
28
|
+
from pymodaq_utils.serialize.serializer_legacy import Serializer, DeSerializer
|
|
29
29
|
from pymodaq_gui.managers.parameter_manager import ParameterManager
|
|
30
30
|
|
|
31
31
|
config = Config()
|
|
@@ -50,7 +50,7 @@ class TCPClientTemplate:
|
|
|
50
50
|
client_type: (str) should be one of the accepted client_type by the TCPServer instance (within pymodaq it is
|
|
51
51
|
either 'GRABBER' or 'ACTUATOR'
|
|
52
52
|
"""
|
|
53
|
-
super().__init__()
|
|
53
|
+
#super().__init__()
|
|
54
54
|
|
|
55
55
|
self.ipaddress = ipaddress
|
|
56
56
|
self.port = port
|
|
@@ -245,12 +245,12 @@ class TCPClient(TCPClientTemplate, QObject):
|
|
|
245
245
|
elif command.command == 'position_is':
|
|
246
246
|
if self.socket is not None:
|
|
247
247
|
self.socket.check_sended_with_serializer('position_is')
|
|
248
|
-
self.socket.check_sended_with_serializer(command.attribute
|
|
248
|
+
self.socket.check_sended_with_serializer(command.attribute)
|
|
249
249
|
|
|
250
250
|
elif command.command == 'move_done':
|
|
251
251
|
if self.socket is not None:
|
|
252
252
|
self.socket.check_sended_with_serializer('move_done')
|
|
253
|
-
self.socket.check_sended_with_serializer(command.attribute
|
|
253
|
+
self.socket.check_sended_with_serializer(command.attribute)
|
|
254
254
|
|
|
255
255
|
elif command.command == 'x_axis':
|
|
256
256
|
raise DeprecationWarning('Getting axis though TCPIP is deprecated use the data objects directly')
|
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pymodaq
|
|
3
|
+
Version: 5.0.1
|
|
4
|
+
Summary: Modular Data Acquisition with Python
|
|
5
|
+
Project-URL: Homepage, http://pymodaq.cnrs.fr
|
|
6
|
+
Project-URL: Source, https://github.com/PyMoDAQ/PyMoDAQ
|
|
7
|
+
Project-URL: Tracker, https://github.com/PyMoDAQ/PyMoDAQ/issues
|
|
8
|
+
Author-email: Sébastien Weber <sebastien.weber@cemes.fr>
|
|
9
|
+
License: The MIT License (MIT)
|
|
10
|
+
|
|
11
|
+
Copyright (c) 2021 Sebastien Weber <sebastien.weber@cemes.fr>
|
|
12
|
+
|
|
13
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
14
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
15
|
+
in the Software without restriction, including without limitation the rights
|
|
16
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
17
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
18
|
+
furnished to do so, subject to the following conditions:
|
|
19
|
+
|
|
20
|
+
The above copyright notice and this permission notice shall be included in
|
|
21
|
+
all copies or substantial portions of the Software.
|
|
22
|
+
|
|
23
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
24
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
25
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
26
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
27
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
28
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
29
|
+
THE SOFTWARE.
|
|
30
|
+
License-File: LICENSE
|
|
31
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
32
|
+
Classifier: Environment :: Other Environment
|
|
33
|
+
Classifier: Intended Audience :: Science/Research
|
|
34
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
35
|
+
Classifier: Natural Language :: English
|
|
36
|
+
Classifier: Operating System :: OS Independent
|
|
37
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
38
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
39
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
40
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
41
|
+
Classifier: Topic :: Scientific/Engineering :: Human Machine Interfaces
|
|
42
|
+
Classifier: Topic :: Scientific/Engineering :: Visualization
|
|
43
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
44
|
+
Classifier: Topic :: Software Development :: User Interfaces
|
|
45
|
+
Requires-Python: >=3.8
|
|
46
|
+
Requires-Dist: bayesian-optimization<2.0.0
|
|
47
|
+
Requires-Dist: easydict
|
|
48
|
+
Requires-Dist: multipledispatch
|
|
49
|
+
Requires-Dist: numpy<2.0.0
|
|
50
|
+
Requires-Dist: packaging
|
|
51
|
+
Requires-Dist: pint
|
|
52
|
+
Requires-Dist: pyleco>0.3; python_version >= '3.8'
|
|
53
|
+
Requires-Dist: pymodaq-data>=5.0.15
|
|
54
|
+
Requires-Dist: pymodaq-gui>=5.0.16
|
|
55
|
+
Requires-Dist: pymodaq-plugin-manager>=0.0.17
|
|
56
|
+
Requires-Dist: pymodaq-plugins-mock>=5.0.5
|
|
57
|
+
Requires-Dist: pymodaq-utils
|
|
58
|
+
Requires-Dist: pyqtgraph>=0.12
|
|
59
|
+
Requires-Dist: python-dateutil
|
|
60
|
+
Requires-Dist: qtconsole
|
|
61
|
+
Requires-Dist: qtpy
|
|
62
|
+
Requires-Dist: scipy
|
|
63
|
+
Requires-Dist: setuptools>=60
|
|
64
|
+
Requires-Dist: simple-pid
|
|
65
|
+
Requires-Dist: toml
|
|
66
|
+
Provides-Extra: dev
|
|
67
|
+
Requires-Dist: flake8; extra == 'dev'
|
|
68
|
+
Requires-Dist: h5py; extra == 'dev'
|
|
69
|
+
Requires-Dist: hatch; extra == 'dev'
|
|
70
|
+
Requires-Dist: pyqt5; extra == 'dev'
|
|
71
|
+
Requires-Dist: pyqt6; extra == 'dev'
|
|
72
|
+
Requires-Dist: pyside6; extra == 'dev'
|
|
73
|
+
Requires-Dist: pytest; extra == 'dev'
|
|
74
|
+
Requires-Dist: pytest-cov; extra == 'dev'
|
|
75
|
+
Requires-Dist: pytest-qt; extra == 'dev'
|
|
76
|
+
Requires-Dist: pytest-xdist; extra == 'dev'
|
|
77
|
+
Requires-Dist: pytest-xvfb; extra == 'dev'
|
|
78
|
+
Description-Content-Type: text/x-rst
|
|
79
|
+
|
|
80
|
+
PyMoDAQ
|
|
81
|
+
#######
|
|
82
|
+
|
|
83
|
+
.. image:: https://img.shields.io/pypi/v/pymodaq.svg
|
|
84
|
+
:target: https://pypi.org/project/pymodaq/
|
|
85
|
+
:alt: Latest Version
|
|
86
|
+
|
|
87
|
+
.. image:: https://readthedocs.org/projects/pymodaq/badge/?version=latest
|
|
88
|
+
:target: https://pymodaq.readthedocs.io/en/stable/?badge=latest
|
|
89
|
+
:alt: Documentation Status
|
|
90
|
+
|
|
91
|
+
.. image:: https://codecov.io/gh/PyMoDAQ/PyMoDAQ/graph/badge.svg?token=IQNJRCQDM2
|
|
92
|
+
:target: https://codecov.io/gh/PyMoDAQ/PyMoDAQ
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
+-------------+-------------------+------------------+---------------------+
|
|
97
|
+
| Linux | PyQt5 | PyQt6 | PySide6 |
|
|
98
|
+
+=============+===================+==================+=====================+
|
|
99
|
+
| Python 3.9 | |39-linux-pyqt5| | |39-linux-pyqt6| | |39-linux-pyside6| |
|
|
100
|
+
+-------------+-------------------+------------------+---------------------+
|
|
101
|
+
| Python 3.10 | |310-linux-pyqt5| ||310-linux-pyqt6| | |310-linux-pyside6| |
|
|
102
|
+
+-------------+-------------------+------------------+---------------------+
|
|
103
|
+
| Python 3.11 | |311-linux-pyqt5| ||311-linux-pyqt6| | |311-linux-pyside6| |
|
|
104
|
+
+-------------+-------------------+------------------+---------------------+
|
|
105
|
+
| Python 3.12 | |312-linux-pyqt5| ||312-linux-pyqt6| | |312-linux-pyside6| |
|
|
106
|
+
+-------------+-------------------+------------------+---------------------+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
.. |39-linux-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Linux_3.9_pyqt5.svg
|
|
110
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
111
|
+
|
|
112
|
+
.. |39-linux-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Linux_3.9_pyqt6.svg
|
|
113
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
114
|
+
|
|
115
|
+
.. |39-linux-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Linux_3.9_pyside6.svg
|
|
116
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
117
|
+
|
|
118
|
+
.. |310-linux-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Linux_3.10_pyqt5.svg
|
|
119
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
120
|
+
|
|
121
|
+
.. |310-linux-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Linux_3.10_pyqt6.svg
|
|
122
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
123
|
+
|
|
124
|
+
.. |310-linux-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Linux_3.10_pyside6.svg
|
|
125
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
126
|
+
|
|
127
|
+
.. |311-linux-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Linux_3.11_pyqt5.svg
|
|
128
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
129
|
+
|
|
130
|
+
.. |311-linux-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Linux_3.11_pyqt6.svg
|
|
131
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
132
|
+
|
|
133
|
+
.. |311-linux-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Linux_3.11_pyside6.svg
|
|
134
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
135
|
+
|
|
136
|
+
.. |312-linux-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Linux_3.12_pyqt5.svg
|
|
137
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
138
|
+
|
|
139
|
+
.. |312-linux-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Linux_3.12_pyqt6.svg
|
|
140
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
141
|
+
|
|
142
|
+
.. |312-linux-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Linux_3.12_pyside6.svg
|
|
143
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
+-------------+---------------------+--------------------+-----------------------+
|
|
147
|
+
| Windows | PyQt5 | PyQt6 | PySide6 |
|
|
148
|
+
+=============+=====================+====================+=======================+
|
|
149
|
+
| Python 3.9 | |39-windows-pyqt5| | |39-windows-pyqt6| | |39-windows-pyside6| |
|
|
150
|
+
+-------------+---------------------+--------------------+-----------------------+
|
|
151
|
+
| Python 3.10 | |310-windows-pyqt5| ||310-windows-pyqt6| | |310-windows-pyside6| |
|
|
152
|
+
+-------------+---------------------+--------------------+-----------------------+
|
|
153
|
+
| Python 3.11 | |311-windows-pyqt5| ||311-windows-pyqt6| | |311-windows-pyside6| |
|
|
154
|
+
+-------------+---------------------+--------------------+-----------------------+
|
|
155
|
+
| Python 3.12 | |312-windows-pyqt5| ||312-windows-pyqt6| | |312-windows-pyside6| |
|
|
156
|
+
+-------------+---------------------+--------------------+-----------------------+
|
|
157
|
+
|
|
158
|
+
.. |39-windows-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Windows_3.9_pyqt5.svg
|
|
159
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
160
|
+
|
|
161
|
+
.. |39-windows-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Windows_3.9_pyqt6.svg
|
|
162
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
163
|
+
|
|
164
|
+
.. |39-windows-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Windows_3.9_pyside6.svg
|
|
165
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
166
|
+
|
|
167
|
+
.. |310-windows-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Windows_3.10_pyqt5.svg
|
|
168
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
169
|
+
|
|
170
|
+
.. |310-windows-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Windows_3.10_pyqt6.svg
|
|
171
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
172
|
+
|
|
173
|
+
.. |310-windows-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Windows_3.10_pyside6.svg
|
|
174
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
175
|
+
|
|
176
|
+
.. |311-windows-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Windows_3.11_pyqt5.svg
|
|
177
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
178
|
+
|
|
179
|
+
.. |311-windows-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Windows_3.11_pyqt6.svg
|
|
180
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
181
|
+
|
|
182
|
+
.. |311-windows-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Windows_3.11_pyside6.svg
|
|
183
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
184
|
+
|
|
185
|
+
.. |312-windows-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Windows_3.12_pyqt5.svg
|
|
186
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
187
|
+
|
|
188
|
+
.. |312-windows-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Windows_3.12_pyqt6.svg
|
|
189
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
190
|
+
|
|
191
|
+
.. |312-windows-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.0.x_dev/tests_Windows_3.12_pyside6.svg
|
|
192
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
.. figure:: http://pymodaq.cnrs.fr/en/latest/_static/splash.png
|
|
198
|
+
:alt: shortcut
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
PyMoDAQ, Modular Data Acquisition with Python, is a set of **python** modules used to interface any kind of experiments.
|
|
202
|
+
It simplifies the interaction with detector and actuator hardware to go straight to the data acquisition of interest.
|
|
203
|
+
|
|
204
|
+
It has two purposes:
|
|
205
|
+
|
|
206
|
+
* First, to provide a complete interface to perform automated measurements or logging data without having to write a user/interface for each
|
|
207
|
+
new experiment, this is under the *Dashboard_module* environment and its extensions.
|
|
208
|
+
* Second, to provide various tools (modules) to easily build *custom apps*
|
|
209
|
+
|
|
210
|
+
It is organised a shown below:
|
|
211
|
+
|
|
212
|
+
.. figure:: http://pymodaq.cnrs.fr/en/latest/_images/pymodaq_diagram.png
|
|
213
|
+
:alt: overview
|
|
214
|
+
|
|
215
|
+
PyMoDAQ's Dashboard and its extensions: DAQ_Scan for automated acquisitions, DAQ_Logger for data logging and many other.
|
|
216
|
+
|
|
217
|
+
The main component is the **Dashboard** : This is a graphical component that will initialize actuators and detectors given
|
|
218
|
+
the need of your particular experiment. You configure the dashboard using an interface for quick launch of various
|
|
219
|
+
configurations (numbers and types of control modules).
|
|
220
|
+
|
|
221
|
+
The detectors and the actuators are represented and manipulated using two control modules:
|
|
222
|
+
|
|
223
|
+
* **DAQ_Move_module** : used to control/drive an actuator (stand alone and/or automated).
|
|
224
|
+
Any number of these modules can be instantiated in the Dashboard
|
|
225
|
+
* **DAQ_Viewer_module** : used to control/drive a detector (stand alone and/or automated).
|
|
226
|
+
|
|
227
|
+
Any number of these modules can be instantiated in the Dashboard.
|
|
228
|
+
|
|
229
|
+
The Dashboard allows you to start dedicated extensions that will make use of the control modules:
|
|
230
|
+
|
|
231
|
+
* **DAQ_Logger_module** : This module lets you log data from one or many detectors defined in the dashboard. You can log data
|
|
232
|
+
in a binary hierarchical hdf5 file or towards a sql database
|
|
233
|
+
* **DAQ_Scan_module** : This module lets you configure automated data acquisition from one or many detectors defined
|
|
234
|
+
in the dashboard as a function or one or more actuators defined also in the dashboard.
|
|
235
|
+
|
|
236
|
+
and many others to simplify any application development.
|
|
237
|
+
|
|
238
|
+
Published under the MIT FREE SOFTWARE LICENSE
|
|
239
|
+
|
|
240
|
+
GitHub repo: https://github.com/PyMoDAQ
|
|
241
|
+
|
|
242
|
+
Documentation: http://pymodaq.cnrs.fr/
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
pymodaq/__init__.py,sha256=
|
|
2
|
-
pymodaq/dashboard.py,sha256=
|
|
1
|
+
pymodaq/__init__.py,sha256=VtSBaXkrFtgRchmQN2dIet1X88h9r9M6C8OCD9WZPy0,3250
|
|
2
|
+
pymodaq/dashboard.py,sha256=htNN_zwK8v8wuSMA735wBiKYLu_Kx_KzAdqHpkt0FYQ,76519
|
|
3
3
|
pymodaq/icon.ico,sha256=hOHHfNDENKphQvG1WDleSEYcHukneR2eRFJu8isIlD4,74359
|
|
4
4
|
pymodaq/splash.png,sha256=ow8IECF3tPRUMA4tf2tMu1aRiMaxx91_Y2ckVxkrmF0,53114
|
|
5
|
+
pymodaq/updater.py,sha256=JMCVRgAXwmlrKxZv3837E-LRhF0F8V-td_wODwCoXaY,3821
|
|
5
6
|
pymodaq/control_modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
pymodaq/control_modules/daq_move.py,sha256=
|
|
7
|
-
pymodaq/control_modules/daq_move_ui.py,sha256=
|
|
8
|
-
pymodaq/control_modules/daq_viewer.py,sha256=
|
|
7
|
+
pymodaq/control_modules/daq_move.py,sha256=YMkcaMiveStJ7EvNQAWb-PA-V2AxSj8jTv8NIAmx6-c,38467
|
|
8
|
+
pymodaq/control_modules/daq_move_ui.py,sha256=bdkRX0wjkQuFDr4OT1Q6jT_15DEWV1dn2R6WF50H23s,16811
|
|
9
|
+
pymodaq/control_modules/daq_viewer.py,sha256=wMXIT62zr3W_8behOz61OjpMKP35bEwhbWICkt4_yIg,58600
|
|
9
10
|
pymodaq/control_modules/daq_viewer_ui.py,sha256=7XTidYrYlzj--DbbE1Wx4UBjvp1upGpziGhSTPoMKCc,15677
|
|
10
11
|
pymodaq/control_modules/mocks.py,sha256=CdczKJDAuM2oL7VvIpSBWiYtTCqK_6x9unxavezp3_s,1954
|
|
11
|
-
pymodaq/control_modules/move_utility_classes.py,sha256=
|
|
12
|
-
pymodaq/control_modules/utils.py,sha256=
|
|
13
|
-
pymodaq/control_modules/viewer_utility_classes.py,sha256=
|
|
12
|
+
pymodaq/control_modules/move_utility_classes.py,sha256=Y4AttqefEmlg_Mi-KUCNXyj27JleUu7QLclwrYvInW8,43171
|
|
13
|
+
pymodaq/control_modules/utils.py,sha256=E94gyLrh7fkeppwihHXcwNyKD3CqBZvkMkk8X4fl_UE,20897
|
|
14
|
+
pymodaq/control_modules/viewer_utility_classes.py,sha256=1TcyAC7AiJNKvJ6OGNOYoyFvRCT-u6RBbFv-X8IkZYA,28076
|
|
15
|
+
pymodaq/daq_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
+
pymodaq/daq_utils/daq_utils.py,sha256=hRfW9IhpJnrDlBgC4cxtaMl41DTgbBAT8YrMFK5OAgY,248
|
|
14
17
|
pymodaq/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
-
pymodaq/examples/custom_app.py,sha256=xfx-Zzvc9XotBCLR0Jb1WLk0EQr_4qm3xHRiHy46v0E,10323
|
|
16
|
-
pymodaq/examples/custom_viewer.py,sha256=brNji-nTFihyOedDvu6-iYefHos0fL90D4toWMZcMuM,4799
|
|
17
18
|
pymodaq/examples/function_plotter.py,sha256=z9zjvs35nwuq_Ux-EeKv4mELfVCWr1QqQG8F_AFctlk,6109
|
|
18
19
|
pymodaq/examples/nonlinearscanner.py,sha256=x0R2_FP0YnuOCCAmYRiAiZ1jfUdRxu5RqIYLyGQMZ0U,3790
|
|
19
|
-
pymodaq/examples/
|
|
20
|
-
pymodaq/examples/preset_MockCamera.xml,sha256=quQlMsX6YSoqqc9_9Y-9zu3TDM6Xvnuc2JSWwg9f948,15774
|
|
20
|
+
pymodaq/examples/qt_less_standalone_module.py,sha256=9UD4niVfNXscDVQiOJuuL6lN9PC7Jfp9FwVJ0qz_6Do,4857
|
|
21
21
|
pymodaq/examples/tcp_client.py,sha256=AGkLR307r11YmPej4e8WMXwAOuXpDcqeMCrWo1whiKw,2583
|
|
22
22
|
pymodaq/examples/Labview_TCP_Client/DAQ_TCP_Client.aliases,sha256=t0eKH9Uq_AMk4wQ-6Pm5mKUjGcCvfT9GtvMsvDhkCUk,47
|
|
23
23
|
pymodaq/examples/Labview_TCP_Client/DAQ_TCP_Client.lvlps,sha256=VZHH96rKSnRYKeCAXUmKI3vQOX8Wz53FYCF2yXuqnaU,84
|
|
@@ -36,66 +36,65 @@ pymodaq/examples/Labview_TCP_Client/client_state.ctl,sha256=IxYi5Og0QXFB1e0VeBL2
|
|
|
36
36
|
pymodaq/examples/Labview_TCP_Client/cmd_types.ctl,sha256=gwuDyGcte11Zqx0C-U8ljRyYCQleUPh18MYqg9GtxPg,4618
|
|
37
37
|
pymodaq/extensions/__init__.py,sha256=PXelEHNgMwhjWlvxwObYU1joSLJnaIsFBZs9ZTR8w5c,470
|
|
38
38
|
pymodaq/extensions/console.py,sha256=kkuHHog_a2Y_5cYrAFTD7IGRQ4BA4NBQz4hrwFYanQY,2277
|
|
39
|
-
pymodaq/extensions/daq_scan.py,sha256
|
|
40
|
-
pymodaq/extensions/daq_scan_ui.py,sha256=
|
|
39
|
+
pymodaq/extensions/daq_scan.py,sha256=-qEl576RLvr2eF5tBHQk2UyMcFWIDCB07OxMzNvWdyE,49282
|
|
40
|
+
pymodaq/extensions/daq_scan_ui.py,sha256=kKcXu2tNo-VJR7GQPNEXxMKiKitA4F3a_tOSamalWh0,10052
|
|
41
41
|
pymodaq/extensions/h5browser.py,sha256=7WbF2hj7sdU0kCqTxB4nXvfKGqUnoIsa2_AhCtCBNQo,1131
|
|
42
|
-
pymodaq/extensions/utils.py,sha256=
|
|
42
|
+
pymodaq/extensions/utils.py,sha256=18FvgD9vtwAvGdD01LiV0-jcGv0WNjYyDLSP-NFUjno,3042
|
|
43
43
|
pymodaq/extensions/bayesian/__init__.py,sha256=QMV9tq8Axi6YjoGj4UguBO8Zvuh26r5s91bm6YU7Itk,55
|
|
44
|
-
pymodaq/extensions/bayesian/bayesian_optimisation.py,sha256=
|
|
45
|
-
pymodaq/extensions/bayesian/utils.py,sha256=
|
|
46
|
-
pymodaq/extensions/daq_logger/__init__.py,sha256=
|
|
44
|
+
pymodaq/extensions/bayesian/bayesian_optimisation.py,sha256=25nAtpQxN2LnBUyUFDkbPRojBqqGxcLe7hruAVQZj_o,30297
|
|
45
|
+
pymodaq/extensions/bayesian/utils.py,sha256=PNBIHETkZNieExyd9gr8pqWAYXg3_1QW570pwbHbcQw,15473
|
|
46
|
+
pymodaq/extensions/daq_logger/__init__.py,sha256=u-W6S5KmVKjOuRLbpnM0bqn9vCiJjW97RpW7iaKssKM,28
|
|
47
47
|
pymodaq/extensions/daq_logger/abstract.py,sha256=I-t-2nSIVHHUfHJ-3IoqsuULZiIsXRe4saotaEL3-Fk,1095
|
|
48
|
-
pymodaq/extensions/daq_logger/daq_logger.py,sha256=
|
|
48
|
+
pymodaq/extensions/daq_logger/daq_logger.py,sha256=HU3DLc_tV9D1nRPSlnoLaXzU0k0lMpC2HYZeA74d_O0,18464
|
|
49
49
|
pymodaq/extensions/daq_logger/h5logging.py,sha256=Z512PrN4HyKMgqZ7sStFRoY1u2Baiau7X4II5Mb4Ofo,2434
|
|
50
50
|
pymodaq/extensions/daq_logger/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
51
|
pymodaq/extensions/daq_logger/db/db_logger.py,sha256=E607KSCloojpAa9QObhaLAe1tKfh0qEkDLrafElM8rc,10460
|
|
52
52
|
pymodaq/extensions/daq_logger/db/db_logger_models.py,sha256=r9672aG8vUPqtHq6gFSuIFP-7hf8HhJavsRZrYo20Ns,3461
|
|
53
|
-
pymodaq/extensions/pid/__init__.py,sha256=
|
|
54
|
-
pymodaq/extensions/pid/
|
|
55
|
-
pymodaq/extensions/pid/
|
|
56
|
-
pymodaq/extensions/pid/
|
|
53
|
+
pymodaq/extensions/pid/__init__.py,sha256=tHegjXR1MZ3XHdFTpzYasFIzMxjkNUL-986DKLagAXs,517
|
|
54
|
+
pymodaq/extensions/pid/actuator_controller.py,sha256=SOE2GjevbqxqxXewW0DMgoqNL_0CaPdNLjyKNc6ULKI,377
|
|
55
|
+
pymodaq/extensions/pid/daq_move_PID.py,sha256=9q-lMVkS_yBNy0xyAhCWfreKGCOqIBt-LjReKpvNKrA,2146
|
|
56
|
+
pymodaq/extensions/pid/pid_controller.py,sha256=fXgLbS_u32mUkDxkTli6QjHuAALnANkKwWLM8c08Olk,29046
|
|
57
|
+
pymodaq/extensions/pid/utils.py,sha256=kvrioyi_ZwgzXODPby9FsnWpgFmS3Gcfqj1yUyX1uP8,7990
|
|
57
58
|
pymodaq/post_treatment/__init__.py,sha256=xaaLFZJ7OLqI_7yPurFk89A7m2ywSbYDXAsdE-QQ8Zg,81
|
|
58
59
|
pymodaq/post_treatment/load_and_plot.py,sha256=dqDhZv_g3YY_Ah8bJ6OoOfPxR5xb-CuggbzlfSkPMvU,12158
|
|
59
|
-
pymodaq/post_treatment/daq_measurement/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
|
-
pymodaq/post_treatment/daq_measurement/daq_measurement_GUI.py,sha256=1u7hWDaiwsZE56c0eDTUw6qfuezoxji_QaIjkcNx0eg,7438
|
|
61
|
-
pymodaq/post_treatment/daq_measurement/daq_measurement_GUI.ui,sha256=PyzbCWPMkh5oIYYteZczXyWMeHKW9EJmM1QlzXhnyTk,7037
|
|
62
|
-
pymodaq/post_treatment/daq_measurement/daq_measurement_main.py,sha256=CAKwcWMOD86aXB8mbdxOK7e8nZRos5d59FzDtqK1QoY,17093
|
|
63
|
-
pymodaq/post_treatment/daq_measurement/process_from_QtDesigner_DAQ_Measurement_GUI.bat,sha256=e1tu2A67MS9fk3jhriF6saQgRxWIucIvNW92iWXFP6E,164
|
|
64
60
|
pymodaq/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
65
61
|
pymodaq/resources/preset_default.xml,sha256=3OMyj4d0SeArDNcgT41JHUWSEuITM56QsP3CHgLhhqQ,26382
|
|
66
|
-
pymodaq/resources/setup_plugin.py,sha256=
|
|
62
|
+
pymodaq/resources/setup_plugin.py,sha256=jvMuSp4UxGaPUe9uPUvHg9DrdwyFakG6_sFy_zXb1f8,3182
|
|
67
63
|
pymodaq/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
64
|
pymodaq/utils/array_manipulation.py,sha256=lU-MwuAIv0ZFc0_E11w0TSX5AfGarJOG58yIZZk36GY,272
|
|
69
65
|
pymodaq/utils/calibration_camera.py,sha256=WTRXFbacR5tL01rFH1JZ5ejEXGcxOVUM8kRA5GPyCc8,8869
|
|
70
|
-
pymodaq/utils/chrono_timer.py,sha256=
|
|
66
|
+
pymodaq/utils/chrono_timer.py,sha256=uBVtV3AW-m-fnHlMYgm1qYiuBpREdL1A93yJG78VAiM,7086
|
|
71
67
|
pymodaq/utils/config.py,sha256=w0EkWEvUbLCq7nTNZQccaMWVILuFaGW1JsIgX3VIKKc,1155
|
|
72
68
|
pymodaq/utils/conftests.py,sha256=3Ak8WEpa3EhAp73Yb1LLq8YFONhPqiL7gG9eSDIoTNc,58
|
|
73
|
-
pymodaq/utils/daq_utils.py,sha256=
|
|
74
|
-
pymodaq/utils/data.py,sha256=
|
|
69
|
+
pymodaq/utils/daq_utils.py,sha256=AJIA6PTDKe2nzoL0hgSJRWA5PYhKwZsBKfpPh0QkoTc,6131
|
|
70
|
+
pymodaq/utils/data.py,sha256=_Xx8vVzJd6xpGgCFpa0Px48YnWBAr-uDaYzWhXYoxLQ,4068
|
|
71
|
+
pymodaq/utils/enums.py,sha256=9PzGPsPN_6Wl9Pm0uV66-KByPsfpV2Coi5193kNVmII,233
|
|
75
72
|
pymodaq/utils/exceptions.py,sha256=xWORkqBplDEKI3t5N4LEYPlowlxIs9E007AtYe4E8Y4,627
|
|
76
73
|
pymodaq/utils/logger.py,sha256=6x5BPpWXw1zW2M7F4lRGIOP2TtnqJHz2m7XSqI8g0u0,293
|
|
77
74
|
pymodaq/utils/math_utils.py,sha256=uBnk15-O2ucoF0dH-f41HqQYWIFsqNdkCb7AngwN8BI,248
|
|
75
|
+
pymodaq/utils/messenger.py,sha256=T-RjQtx6Hz4F96TvOL61jomKjfqmNa_FdnGvvpQFfe0,246
|
|
78
76
|
pymodaq/utils/gui_utils/__init__.py,sha256=MUGjejjsXUzTtDTqDzaQTL9W8Sc850ZZxYBlJn6xlxg,539
|
|
79
|
-
pymodaq/utils/gui_utils/loader_utils.py,sha256=
|
|
80
|
-
pymodaq/utils/gui_utils/utils.py,sha256=
|
|
77
|
+
pymodaq/utils/gui_utils/loader_utils.py,sha256=nuCNpzS2garrNqsEdZ8UuvOMtQwas3Tnto5UhtCXn2M,2052
|
|
78
|
+
pymodaq/utils/gui_utils/utils.py,sha256=0FbuHR-3glsZZO_Lye-h470y9TNuFMcVMJkMF_euzoQ,494
|
|
79
|
+
pymodaq/utils/gui_utils/widgets/lcd.py,sha256=x7uUPO_JSJX6ZkIa3xvdVFC898G2e3wvPUsATOs3iik,306
|
|
81
80
|
pymodaq/utils/h5modules/__init__.py,sha256=daEdpEyAJIa8b2VkCqSKcw8PaExcB6Qro80XNes_sHA,2
|
|
82
81
|
pymodaq/utils/h5modules/module_saving.py,sha256=wGI4eHKvcHOyfJ4MTclKIpqIM8MOlBYNBvqqs6nV3qA,14112
|
|
83
82
|
pymodaq/utils/leco/__init__.py,sha256=PVxGVZx5uHCsZmFWrVTkVX1lE5C2V95bKBj0vK9KZQU,878
|
|
84
|
-
pymodaq/utils/leco/daq_move_LECODirector.py,sha256=
|
|
85
|
-
pymodaq/utils/leco/daq_xDviewer_LECODirector.py,sha256=
|
|
83
|
+
pymodaq/utils/leco/daq_move_LECODirector.py,sha256=7s5XD9REJr5496uRT3vaZxH8hzKM6nzB74jqAleycqA,6806
|
|
84
|
+
pymodaq/utils/leco/daq_xDviewer_LECODirector.py,sha256=GrcVFgTNzexG3hTPF9ejWdAPWMoTbgfwkdxLxGJu6go,6311
|
|
86
85
|
pymodaq/utils/leco/desktop.ini,sha256=2zopClaSQqdFfIsC8CGo2Oc-14x9h1gV0-fUrDtLFmA,82
|
|
87
86
|
pymodaq/utils/leco/director_utils.py,sha256=0inrKh5aI-1pQs3fTXYvmjvwZ6TiyEEAupr2Hw_pMj0,2105
|
|
88
87
|
pymodaq/utils/leco/leco_director.py,sha256=TVd8DNKGoq7Uh9P5JNHFBDt1Q0VxIYPweciDbpTpa8M,3046
|
|
89
|
-
pymodaq/utils/leco/pymodaq_listener.py,sha256=
|
|
90
|
-
pymodaq/utils/leco/utils.py,sha256=
|
|
88
|
+
pymodaq/utils/leco/pymodaq_listener.py,sha256=BCZlEQw5Z06tdHu6dqi2w9VMh4-UsSZC95hJXCDkW80,10835
|
|
89
|
+
pymodaq/utils/leco/utils.py,sha256=TQQwHrVgkhqpfjg2VZq2H5cv3Vwod5E5NTrsczkahRE,2373
|
|
91
90
|
pymodaq/utils/managers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
92
91
|
pymodaq/utils/managers/batchscan_manager.py,sha256=rhz2qeVfePX0h8sjIY1tHQckIHIxKhH-zOIzvM0_1Ag,13666
|
|
93
|
-
pymodaq/utils/managers/modules_manager.py,sha256=
|
|
94
|
-
pymodaq/utils/managers/overshoot_manager.py,sha256=
|
|
95
|
-
pymodaq/utils/managers/preset_manager.py,sha256=
|
|
96
|
-
pymodaq/utils/managers/preset_manager_utils.py,sha256=
|
|
97
|
-
pymodaq/utils/managers/remote_manager.py,sha256=
|
|
98
|
-
pymodaq/utils/parameter/__init__.py,sha256=
|
|
92
|
+
pymodaq/utils/managers/modules_manager.py,sha256=YSpVQHA3ts9ccAgr77C_EjiMJof8R8uhZ3-aGkMQ5pQ,21016
|
|
93
|
+
pymodaq/utils/managers/overshoot_manager.py,sha256=df_0cpvU5BxUvVqrWXuBFWyHSs9i_2NwLFjFsIOcBOA,9055
|
|
94
|
+
pymodaq/utils/managers/preset_manager.py,sha256=JlndG8eWbqhU4ijiLsvBqAVIkSkCY5wpG8kPjlHXV5I,8014
|
|
95
|
+
pymodaq/utils/managers/preset_manager_utils.py,sha256=3tmhxMKJnYA-SRPumPtdrx-3t7tyTnNr0Z7GFVN_z28,8269
|
|
96
|
+
pymodaq/utils/managers/remote_manager.py,sha256=Sipjo-y-usOElV0CQCeH74-Ig99XoGbarNHZj-0yocE,22160
|
|
97
|
+
pymodaq/utils/parameter/__init__.py,sha256=I5oOJu5nJbcn5sa7TdUP0QVNNZKBrKReeMHJG02OmZc,395
|
|
99
98
|
pymodaq/utils/parameter/utils.py,sha256=atxN31PFrLDPjpX0ITEL_ugBvreOVI-RfjbOU_YCMhw,247
|
|
100
99
|
pymodaq/utils/scanner/__init__.py,sha256=LqY1QwGnJEgr8CcW8uLWzbWy55Nvkmjmww4nl7xMpYU,171
|
|
101
100
|
pymodaq/utils/scanner/scan_config.py,sha256=GJeH8oeZ_zMtujwkLM1jpKDQFLFKIN1wlkxXbOv6nWM,325
|
|
@@ -113,11 +112,11 @@ pymodaq/utils/svg/svg_renderer.py,sha256=USEcrOWmQAq8UM620e_XIGPI6z9IQmhyJuqbPo3
|
|
|
113
112
|
pymodaq/utils/svg/svg_view.py,sha256=bmXpDqnw9S-Bp3F8Hi_oeYB5Y9gebiCNsQWVJzCq-PA,901
|
|
114
113
|
pymodaq/utils/svg/svg_viewer2D.py,sha256=HbJKT90bu1fTY1m018NBtXCZGBXnGNAFemBDrMxc0PY,1427
|
|
115
114
|
pymodaq/utils/tcp_ip/__init__.py,sha256=1e_EK0AgvdoLAD_CSGGEaITZdy6OWCO7ih9IAIp7HT4,81
|
|
116
|
-
pymodaq/utils/tcp_ip/mysocket.py,sha256=
|
|
117
|
-
pymodaq/utils/tcp_ip/serializer.py,sha256=
|
|
118
|
-
pymodaq/utils/tcp_ip/tcp_server_client.py,sha256=
|
|
119
|
-
pymodaq-5.0.
|
|
120
|
-
pymodaq-5.0.
|
|
121
|
-
pymodaq-5.0.
|
|
122
|
-
pymodaq-5.0.
|
|
123
|
-
pymodaq-5.0.
|
|
115
|
+
pymodaq/utils/tcp_ip/mysocket.py,sha256=03FaQskso8nLLAsN-ijX-RazXbeMezRnAPvsRxTQa4k,326
|
|
116
|
+
pymodaq/utils/tcp_ip/serializer.py,sha256=CTgPSaG05CKCHdYMfwaTNMt6_6FbINF7uiELLgylsUE,399
|
|
117
|
+
pymodaq/utils/tcp_ip/tcp_server_client.py,sha256=eL-Q1HnnaAG8wfTUb9unEIiNFApMXzfzfveUWoC0_mg,30657
|
|
118
|
+
pymodaq-5.0.1.dist-info/METADATA,sha256=UDcSy9nS66ee6lFG96hrrGXAB1CSZ0oNwkNZymr-myo,12870
|
|
119
|
+
pymodaq-5.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
120
|
+
pymodaq-5.0.1.dist-info/entry_points.txt,sha256=DvPq6fmIPH2JNsCqHDhn1xEj1kX5tfuc7xQ8-l5S2EU,387
|
|
121
|
+
pymodaq-5.0.1.dist-info/licenses/LICENSE,sha256=VKOejxexXAe3XwfhAhcFGqeXQ12irxVHdeAojZwFEI8,1108
|
|
122
|
+
pymodaq-5.0.1.dist-info/RECORD,,
|