pymodaq 3.6.13__py3-none-any.whl → 4.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.

Files changed (233) hide show
  1. pymodaq/__init__.py +13 -6
  2. pymodaq/control_modules/__init__.py +0 -7
  3. pymodaq/control_modules/daq_move.py +965 -2
  4. pymodaq/control_modules/daq_move_ui.py +319 -0
  5. pymodaq/control_modules/daq_viewer.py +1573 -3
  6. pymodaq/control_modules/daq_viewer_ui.py +393 -0
  7. pymodaq/control_modules/mocks.py +51 -0
  8. pymodaq/control_modules/move_utility_classes.py +709 -8
  9. pymodaq/control_modules/utils.py +256 -0
  10. pymodaq/control_modules/viewer_utility_classes.py +663 -6
  11. pymodaq/daq_utils.py +89 -0
  12. pymodaq/dashboard.py +91 -72
  13. pymodaq/examples/custom_app.py +12 -11
  14. pymodaq/examples/custom_viewer.py +10 -10
  15. pymodaq/examples/function_plotter.py +16 -13
  16. pymodaq/examples/nonlinearscanner.py +8 -6
  17. pymodaq/examples/parameter_ex.py +7 -7
  18. pymodaq/examples/preset_MockCamera.xml +1 -0
  19. pymodaq/extensions/__init__.py +16 -0
  20. pymodaq/extensions/console.py +76 -0
  21. pymodaq/{daq_logger.py → extensions/daq_logger.py} +115 -65
  22. pymodaq/extensions/daq_scan.py +1339 -0
  23. pymodaq/extensions/daq_scan_ui.py +240 -0
  24. pymodaq/extensions/h5browser.py +23 -0
  25. pymodaq/{pid → extensions/pid}/__init__.py +4 -2
  26. pymodaq/{pid → extensions/pid}/daq_move_PID.py +2 -2
  27. pymodaq/{pid → extensions/pid}/pid_controller.py +48 -36
  28. pymodaq/{pid → extensions/pid}/utils.py +52 -6
  29. pymodaq/extensions/utils.py +40 -0
  30. pymodaq/post_treatment/__init__.py +6 -0
  31. pymodaq/{daq_analysis → post_treatment/daq_analysis}/daq_analysis_main.py +17 -17
  32. pymodaq/{daq_measurement → post_treatment/daq_measurement}/daq_measurement_main.py +8 -14
  33. pymodaq/post_treatment/load_and_plot.py +219 -0
  34. pymodaq/post_treatment/process_to_scalar.py +263 -0
  35. pymodaq/resources/QtDesigner_Ressources/Icon_Library/run_all.png +0 -0
  36. pymodaq/resources/QtDesigner_Ressources/Icon_Library/stop_all.png +0 -0
  37. pymodaq/resources/QtDesigner_Ressources/QtDesigner_ressources.bat +1 -1
  38. pymodaq/resources/QtDesigner_Ressources/QtDesigner_ressources.qrc +1 -0
  39. pymodaq/resources/QtDesigner_Ressources/QtDesigner_ressources_rc.py +109784 -109173
  40. pymodaq/resources/QtDesigner_Ressources/icons.svg +142 -0
  41. pymodaq/resources/VERSION +1 -1
  42. pymodaq/resources/config_template.toml +32 -13
  43. pymodaq/resources/preset_default.xml +1 -1
  44. pymodaq/{daq_utils → utils}/Tuto innosetup/script_full_setup.iss +1 -1
  45. pymodaq/utils/__init__.py +0 -29
  46. pymodaq/utils/abstract/__init__.py +48 -0
  47. pymodaq/{daq_utils → utils}/abstract/logger.py +7 -3
  48. pymodaq/utils/array_manipulation.py +379 -8
  49. pymodaq/{daq_utils → utils}/calibration_camera.py +6 -6
  50. pymodaq/{daq_utils → utils}/chrono_timer.py +1 -1
  51. pymodaq/utils/config.py +448 -0
  52. pymodaq/utils/conftests.py +5 -0
  53. pymodaq/utils/daq_utils.py +828 -8
  54. pymodaq/utils/data.py +1873 -7
  55. pymodaq/{daq_utils → utils}/db/db_logger/db_logger.py +86 -47
  56. pymodaq/{daq_utils → utils}/db/db_logger/db_logger_models.py +31 -10
  57. pymodaq/{daq_utils → utils}/enums.py +12 -7
  58. pymodaq/utils/exceptions.py +37 -0
  59. pymodaq/utils/factory.py +82 -0
  60. pymodaq/{daq_utils → utils}/gui_utils/__init__.py +1 -1
  61. pymodaq/utils/gui_utils/custom_app.py +129 -0
  62. pymodaq/utils/gui_utils/file_io.py +66 -0
  63. pymodaq/{daq_utils → utils}/gui_utils/layout.py +2 -2
  64. pymodaq/{daq_utils → utils}/gui_utils/utils.py +13 -3
  65. pymodaq/{daq_utils → utils}/gui_utils/widgets/__init__.py +2 -2
  66. pymodaq/utils/gui_utils/widgets/label.py +24 -0
  67. pymodaq/{daq_utils → utils}/gui_utils/widgets/lcd.py +12 -7
  68. pymodaq/{daq_utils → utils}/gui_utils/widgets/push.py +66 -2
  69. pymodaq/{daq_utils → utils}/gui_utils/widgets/qled.py +6 -4
  70. pymodaq/utils/gui_utils/widgets/spinbox.py +24 -0
  71. pymodaq/{daq_utils → utils}/gui_utils/widgets/table.py +2 -2
  72. pymodaq/utils/h5modules/__init__.py +1 -0
  73. pymodaq/{daq_utils/h5backend.py → utils/h5modules/backends.py} +200 -112
  74. pymodaq/utils/h5modules/browsing.py +683 -0
  75. pymodaq/utils/h5modules/data_saving.py +839 -0
  76. pymodaq/utils/h5modules/h5logging.py +110 -0
  77. pymodaq/utils/h5modules/module_saving.py +350 -0
  78. pymodaq/utils/h5modules/saving.py +914 -0
  79. pymodaq/utils/h5modules/utils.py +85 -0
  80. pymodaq/utils/logger.py +64 -6
  81. pymodaq/utils/managers/action_manager.py +460 -0
  82. pymodaq/{daq_utils → utils}/managers/batchscan_manager.py +144 -112
  83. pymodaq/{daq_utils → utils}/managers/modules_manager.py +188 -114
  84. pymodaq/{daq_utils → utils}/managers/overshoot_manager.py +3 -3
  85. pymodaq/utils/managers/parameter_manager.py +110 -0
  86. pymodaq/{daq_utils → utils}/managers/preset_manager.py +17 -13
  87. pymodaq/{daq_utils → utils}/managers/preset_manager_utils.py +8 -7
  88. pymodaq/{daq_utils → utils}/managers/remote_manager.py +7 -6
  89. pymodaq/{daq_utils → utils}/managers/roi_manager.py +148 -57
  90. pymodaq/utils/math_utils.py +546 -10
  91. pymodaq/{daq_utils → utils}/messenger.py +5 -1
  92. pymodaq/utils/parameter/__init__.py +2 -15
  93. pymodaq/{daq_utils → utils}/parameter/ioxml.py +12 -6
  94. pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/__init__.py +1 -3
  95. pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/filedir.py +1 -1
  96. pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/itemselect.py +3 -0
  97. pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/led.py +1 -1
  98. pymodaq/utils/parameter/pymodaq_ptypes/pixmap.py +161 -0
  99. pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/slide.py +1 -1
  100. pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/table.py +1 -1
  101. pymodaq/utils/parameter/utils.py +206 -11
  102. pymodaq/utils/plotting/data_viewers/__init__.py +6 -0
  103. pymodaq/utils/plotting/data_viewers/viewer.py +393 -0
  104. pymodaq/utils/plotting/data_viewers/viewer0D.py +251 -0
  105. pymodaq/utils/plotting/data_viewers/viewer1D.py +574 -0
  106. pymodaq/{daq_utils → utils}/plotting/data_viewers/viewer1Dbasic.py +8 -3
  107. pymodaq/{daq_utils → utils}/plotting/data_viewers/viewer2D.py +292 -357
  108. pymodaq/{daq_utils → utils}/plotting/data_viewers/viewer2D_basic.py +58 -75
  109. pymodaq/utils/plotting/data_viewers/viewerND.py +738 -0
  110. pymodaq/{daq_utils → utils}/plotting/gant_chart.py +2 -2
  111. pymodaq/{daq_utils → utils}/plotting/items/axis_scaled.py +4 -2
  112. pymodaq/{daq_utils → utils}/plotting/items/image.py +8 -6
  113. pymodaq/utils/plotting/navigator.py +355 -0
  114. pymodaq/utils/plotting/scan_selector.py +480 -0
  115. pymodaq/utils/plotting/utils/axes_viewer.py +88 -0
  116. pymodaq/utils/plotting/utils/filter.py +538 -0
  117. pymodaq/utils/plotting/utils/lineout.py +224 -0
  118. pymodaq/{daq_utils → utils}/plotting/utils/plot_utils.py +196 -84
  119. pymodaq/{daq_utils → utils}/plotting/utils/signalND.py +21 -13
  120. pymodaq/utils/plotting/widgets.py +76 -0
  121. pymodaq/utils/scanner/__init__.py +10 -0
  122. pymodaq/utils/scanner/scan_factory.py +204 -0
  123. pymodaq/utils/scanner/scanner.py +271 -0
  124. pymodaq/utils/scanner/scanners/_1d_scanners.py +117 -0
  125. pymodaq/utils/scanner/scanners/_2d_scanners.py +293 -0
  126. pymodaq/utils/scanner/scanners/sequential.py +192 -0
  127. pymodaq/utils/scanner/scanners/tabular.py +294 -0
  128. pymodaq/utils/scanner/utils.py +83 -0
  129. pymodaq/utils/slicing.py +47 -0
  130. pymodaq/utils/svg/__init__.py +6 -0
  131. pymodaq/utils/svg/svg_renderer.py +20 -0
  132. pymodaq/utils/svg/svg_view.py +35 -0
  133. pymodaq/utils/svg/svg_viewer2D.py +51 -0
  134. pymodaq/{daq_utils → utils}/tcp_server_client.py +36 -37
  135. pymodaq/{daq_utils → utils}/tree_layout/tree_layout_main.py +50 -35
  136. pymodaq/utils/units.py +216 -0
  137. pymodaq-4.0.1.dist-info/METADATA +159 -0
  138. {pymodaq-3.6.13.dist-info → pymodaq-4.0.1.dist-info}/RECORD +167 -170
  139. {pymodaq-3.6.13.dist-info → pymodaq-4.0.1.dist-info}/WHEEL +1 -2
  140. pymodaq-4.0.1.dist-info/entry_points.txt +8 -0
  141. pymodaq/daq_move/daq_move_gui.py +0 -279
  142. pymodaq/daq_move/daq_move_gui.ui +0 -534
  143. pymodaq/daq_move/daq_move_main.py +0 -1042
  144. pymodaq/daq_move/process_from_QtDesigner_DAQ_Move_GUI.bat +0 -2
  145. pymodaq/daq_move/utility_classes.py +0 -686
  146. pymodaq/daq_scan.py +0 -2160
  147. pymodaq/daq_utils/array_manipulation.py +0 -386
  148. pymodaq/daq_utils/config.py +0 -273
  149. pymodaq/daq_utils/conftests.py +0 -7
  150. pymodaq/daq_utils/custom_parameter_tree.py +0 -9
  151. pymodaq/daq_utils/daq_enums.py +0 -133
  152. pymodaq/daq_utils/daq_utils.py +0 -1402
  153. pymodaq/daq_utils/exceptions.py +0 -71
  154. pymodaq/daq_utils/gui_utils/custom_app.py +0 -103
  155. pymodaq/daq_utils/gui_utils/file_io.py +0 -75
  156. pymodaq/daq_utils/gui_utils/widgets/spinbox.py +0 -9
  157. pymodaq/daq_utils/h5exporter_hyperspy.py +0 -115
  158. pymodaq/daq_utils/h5exporters.py +0 -242
  159. pymodaq/daq_utils/h5modules.py +0 -1559
  160. pymodaq/daq_utils/h5utils.py +0 -241
  161. pymodaq/daq_utils/managers/action_manager.py +0 -236
  162. pymodaq/daq_utils/managers/parameter_manager.py +0 -57
  163. pymodaq/daq_utils/math_utils.py +0 -705
  164. pymodaq/daq_utils/parameter/__init__.py +0 -1
  165. pymodaq/daq_utils/parameter/oldpymodaq_ptypes.py +0 -1626
  166. pymodaq/daq_utils/parameter/pymodaq_ptypes/pixmap.py +0 -85
  167. pymodaq/daq_utils/parameter/utils.py +0 -136
  168. pymodaq/daq_utils/plotting/data_viewers/__init__.py +0 -0
  169. pymodaq/daq_utils/plotting/data_viewers/process_from_QtDesigner_0DViewer_GUI.bat +0 -2
  170. pymodaq/daq_utils/plotting/data_viewers/viewer0D.py +0 -204
  171. pymodaq/daq_utils/plotting/data_viewers/viewer0D_GUI.py +0 -89
  172. pymodaq/daq_utils/plotting/data_viewers/viewer0D_GUI.ui +0 -131
  173. pymodaq/daq_utils/plotting/data_viewers/viewer1D.py +0 -781
  174. pymodaq/daq_utils/plotting/data_viewers/viewerND.py +0 -894
  175. pymodaq/daq_utils/plotting/data_viewers/viewerbase.py +0 -64
  176. pymodaq/daq_utils/plotting/items/__init__.py +0 -0
  177. pymodaq/daq_utils/plotting/navigator.py +0 -500
  178. pymodaq/daq_utils/plotting/scan_selector.py +0 -289
  179. pymodaq/daq_utils/plotting/utils/__init__.py +0 -0
  180. pymodaq/daq_utils/plotting/utils/filter.py +0 -236
  181. pymodaq/daq_utils/plotting/viewer0D/__init__.py +0 -0
  182. pymodaq/daq_utils/plotting/viewer0D/viewer0D_main.py +0 -4
  183. pymodaq/daq_utils/plotting/viewer1D/__init__.py +0 -0
  184. pymodaq/daq_utils/plotting/viewer1D/viewer1D_main.py +0 -4
  185. pymodaq/daq_utils/plotting/viewer1D/viewer1Dbasic.py +0 -4
  186. pymodaq/daq_utils/plotting/viewer2D/viewer_2D_basic.py +0 -4
  187. pymodaq/daq_utils/plotting/viewer2D/viewer_2D_main.py +0 -4
  188. pymodaq/daq_utils/plotting/viewerND/__init__.py +0 -0
  189. pymodaq/daq_utils/plotting/viewerND/viewerND_main.py +0 -4
  190. pymodaq/daq_utils/scanner.py +0 -1289
  191. pymodaq/daq_utils/tree_layout/__init__.py +0 -0
  192. pymodaq/daq_viewer/__init__.py +0 -0
  193. pymodaq/daq_viewer/daq_gui_settings.py +0 -237
  194. pymodaq/daq_viewer/daq_gui_settings.ui +0 -441
  195. pymodaq/daq_viewer/daq_viewer_main.py +0 -2225
  196. pymodaq/daq_viewer/process_from_QtDesigner_DAQ_GUI_settings.bat +0 -2
  197. pymodaq/daq_viewer/utility_classes.py +0 -673
  198. pymodaq/examples/logger_image/__init__.py +0 -0
  199. pymodaq/examples/logger_image/logger_displayer.py +0 -121
  200. pymodaq/examples/logger_image/setup.svg +0 -3119
  201. pymodaq/examples/logger_image/setup_svg.py +0 -114
  202. pymodaq/h5browser.py +0 -39
  203. pymodaq/utils/scanner.py +0 -15
  204. pymodaq-3.6.13.dist-info/METADATA +0 -39
  205. pymodaq-3.6.13.dist-info/entry_points.txt +0 -8
  206. pymodaq-3.6.13.dist-info/top_level.txt +0 -1
  207. /pymodaq/{daq_analysis → post_treatment/daq_analysis}/__init__.py +0 -0
  208. /pymodaq/{daq_measurement → post_treatment/daq_measurement}/__init__.py +0 -0
  209. /pymodaq/{daq_measurement → post_treatment/daq_measurement}/daq_measurement_GUI.py +0 -0
  210. /pymodaq/{daq_measurement → post_treatment/daq_measurement}/daq_measurement_GUI.ui +0 -0
  211. /pymodaq/{daq_measurement → post_treatment/daq_measurement}/process_from_QtDesigner_DAQ_Measurement_GUI.bat +0 -0
  212. /pymodaq/{daq_utils → utils}/Tuto innosetup/Tuto innosetup.odt +0 -0
  213. /pymodaq/{daq_utils → utils}/Tuto innosetup/Tuto innosetup.pdf +0 -0
  214. /pymodaq/{daq_move → utils/db}/__init__.py +0 -0
  215. /pymodaq/{daq_utils → utils/db/db_logger}/__init__.py +0 -0
  216. /pymodaq/{daq_utils → utils}/gui_utils/dock.py +0 -0
  217. /pymodaq/{daq_utils → utils}/gui_utils/list_picker.py +0 -0
  218. /pymodaq/{daq_utils/abstract → utils/managers}/__init__.py +0 -0
  219. /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/bool.py +0 -0
  220. /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/date.py +0 -0
  221. /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/list.py +0 -0
  222. /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/numeric.py +0 -0
  223. /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/tableview.py +0 -0
  224. /pymodaq/{daq_utils → utils}/parameter/pymodaq_ptypes/text.py +0 -0
  225. /pymodaq/{daq_utils/db → utils/plotting}/__init__.py +0 -0
  226. /pymodaq/{daq_utils → utils}/plotting/image_viewer.py +0 -0
  227. /pymodaq/{daq_utils/db/db_logger → utils/plotting/items}/__init__.py +0 -0
  228. /pymodaq/{daq_utils → utils}/plotting/items/crosshair.py +0 -0
  229. /pymodaq/{daq_utils/managers → utils/plotting/utils}/__init__.py +0 -0
  230. /pymodaq/{daq_utils → utils}/qvariant.py +0 -0
  231. /pymodaq/{daq_utils/plotting/viewer2D → utils/scanner/scanners}/__init__.py +0 -0
  232. /pymodaq/{daq_utils/plotting → utils/tree_layout}/__init__.py +0 -0
  233. {pymodaq-3.6.13.dist-info → pymodaq-4.0.1.dist-info/licenses}/LICENSE +0 -0
@@ -0,0 +1,159 @@
1
+ Metadata-Version: 2.1
2
+ Name: pymodaq
3
+ Version: 4.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.7
38
+ Classifier: Programming Language :: Python :: 3.8
39
+ Classifier: Programming Language :: Python :: 3.9
40
+ Classifier: Programming Language :: Python :: 3.10
41
+ Classifier: Programming Language :: Python :: 3.11
42
+ Classifier: Topic :: Scientific/Engineering :: Human Machine Interfaces
43
+ Classifier: Topic :: Scientific/Engineering :: Visualization
44
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
45
+ Classifier: Topic :: Software Development :: User Interfaces
46
+ Requires-Python: >=3.7
47
+ Requires-Dist: docutils==0.17.1
48
+ Requires-Dist: easydict
49
+ Requires-Dist: importlib-metadata; python_version < '3.8'
50
+ Requires-Dist: multipledispatch
51
+ Requires-Dist: numpy
52
+ Requires-Dist: packaging
53
+ Requires-Dist: pint
54
+ Requires-Dist: pymodaq-plugin-manager>=0.0.17
55
+ Requires-Dist: pymodaq-plugins-mock
56
+ Requires-Dist: pyqtgraph>=0.12
57
+ Requires-Dist: python-dateutil
58
+ Requires-Dist: qdarkstyle
59
+ Requires-Dist: qtconsole
60
+ Requires-Dist: qtpy
61
+ Requires-Dist: scipy
62
+ Requires-Dist: setuptools>=60
63
+ Requires-Dist: simple-pid
64
+ Requires-Dist: tables
65
+ Requires-Dist: toml
66
+ Description-Content-Type: text/x-rst
67
+
68
+ PyMoDAQ
69
+ #######
70
+
71
+ .. image:: https://img.shields.io/pypi/v/pymodaq.svg
72
+ :target: https://pypi.org/project/pymodaq/
73
+ :alt: Latest Version
74
+
75
+ .. image:: https://readthedocs.org/projects/pymodaq/badge/?version=latest
76
+ :target: https://pymodaq.readthedocs.io/en/stable/?badge=latest
77
+ :alt: Documentation Status
78
+
79
+ .. image:: https://codecov.io/gh/PyMoDAQ/PyMoDAQ/branch/pymodaq-dev/graph/badge.svg?token=IQNJRCQDM2
80
+ :target: https://codecov.io/gh/PyMoDAQ/PyMoDAQ
81
+
82
+
83
+ .. csv-table:: Tests:
84
+ :header: "Python", "Qt Backend", "OS", Passed
85
+ :widths: 15, 20, 15, 30
86
+
87
+ 3.8, Qt5, Linux, |38Qt5|
88
+ 3.9, Qt5, Linux, |39Qt5|
89
+ 3.10, Qt5, Linux, |310Qt5|
90
+ 3.11, Qt5, Linux, |311Qt5|
91
+ 3.8, Qt5, Windows, |38Qt5win|
92
+ 3.8, PySide2, Linux, |38pyside|
93
+ 3.9, Qt6, Linux, |39Qt6|
94
+
95
+
96
+ .. |38Qt5| image:: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/Testp38pyqt5.yml/badge.svg?branch=pymodaq-dev
97
+ :target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/Testp38pyqt5.yml
98
+
99
+ .. |39Qt5| image:: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/Testp39pyqt5.yml/badge.svg?branch=pymodaq-dev
100
+ :target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/Testp39pyqt5.yml
101
+
102
+ .. |310Qt5| image:: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/Testp310pyqt5.yml/badge.svg?branch=pymodaq-dev
103
+ :target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/Testp310pyqt5.yml
104
+
105
+ .. |311Qt5| image:: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/Testp311pyqt5.yml/badge.svg?branch=pymodaq-dev
106
+ :target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/Testp311pyqt5.yml
107
+
108
+ .. |38Qt5win| image:: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/Testp38pyqt5_win.yml/badge.svg?branch=pymodaq-dev
109
+ :target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/Testp38pyqt5_win.yml
110
+
111
+ .. |38pyside| image:: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/Testp38pyside2.yml/badge.svg?branch=pymodaq-dev
112
+ :target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/Testp38pyside2.yml
113
+
114
+ .. |39Qt6| image:: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/Testp39pyqt6.yml/badge.svg?branch=pymodaq-dev
115
+ :target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/Testp39pyqt6.yml
116
+
117
+
118
+
119
+ .. figure:: http://pymodaq.cnrs.fr/en/latest/_static/splash.png
120
+ :alt: shortcut
121
+
122
+
123
+ PyMoDAQ, Modular Data Acquisition with Python, is a set of **python** modules used to interface any kind of experiments.
124
+ It simplifies the interaction with detector and actuator hardware to go straight to the data acquisition of interest.
125
+
126
+ It has two purposes:
127
+
128
+ * First, to provide a complete interface to perform automated measurements or logging data without having to write a user/interface for each
129
+ new experiment, this is under the *Dashboard_module* environment and its extensions.
130
+ * Second, to provide various tools (modules) to easily build *custom apps*
131
+
132
+ It is organised a shown below:
133
+
134
+ .. figure:: http://pymodaq.cnrs.fr/en/latest/_images/pymodaq_diagram.png
135
+ :alt: overview
136
+
137
+ PyMoDAQ's Dashboard and its extensions: DAQ_Scan for automated acquisitions, DAQ_Logger for data logging and many other.
138
+
139
+
140
+ * **Dashboard_module** : This is the module that will initialize actuators and detectors given the need of your
141
+ particular experiment. You configure the dashboard using an interface for quick launch of various configurations.
142
+ * **DAQ_Logger_module** : This module lets you log data from one or many detectors defined in the dashboard. You can log data
143
+ in a binary hierarchical hdf5 file or towards a sql database
144
+ * **DAQ_Scan_module** : This module lets you configure automated data acquisition from one or many detectors defined
145
+ in the dashboard as a function or one or more actuators defined also in the dashboard.
146
+
147
+ The detectors and the actuators are represented and manipulated using two control modules:
148
+
149
+ * **DAQ_Move_module** : used to control/drive an actuator (stand alone and/or automated). Any number of these modules can be instantiated.
150
+ * **DAQ_Viewer_module** : used to control/drive a detector (stand alone and/or automated). Any number of these modules can be instantiated.
151
+
152
+ and many others to simplify any application development.
153
+
154
+
155
+ Published under the CeCILL-B FREE SOFTWARE LICENSE
156
+
157
+ GitHub repo: https://github.com/PyMoDAQ
158
+
159
+ Documentation: http://pymodaq.cnrs.fr/
@@ -1,146 +1,24 @@
1
- pymodaq/__init__.py,sha256=n0VAw25B-dxk8-DXwWdivoh4Zzu3JA-BvEVRgfIWX1Q,3057
2
- pymodaq/daq_logger.py,sha256=GdeOV5iCn7XrzjcZXs1h85IRVmNcNnA6AliYQ1N1PA0,17400
3
- pymodaq/daq_scan.py,sha256=CjcfaatwqqEfa_JhiCwQ-1TsrR6lrBmHhDbOtfUInEM,110706
4
- pymodaq/dashboard.py,sha256=CuxvlpGNZLAB5DRq3aAhswpv3D2zlRSkL1OKt8MXHNg,61357
5
- pymodaq/h5browser.py,sha256=kisATJVCdiXQ9AltIbW2biJPiuIkUyQwKHGiZp0-H9o,1096
1
+ pymodaq/__init__.py,sha256=HzsUe4yEzUskSKMBL4AP1NVHcoBetXoKUP4VKEt9Kmc,3290
2
+ pymodaq/daq_utils.py,sha256=Wgaoj9V7cUHiy6lgFebopw47IoJbLocU5T_fg0dDx7k,8738
3
+ pymodaq/dashboard.py,sha256=1Yn5hLGwhkTrcqmBT9f_q8aXcgA6NwED3SlzHV9m9uQ,61748
6
4
  pymodaq/icon.ico,sha256=hOHHfNDENKphQvG1WDleSEYcHukneR2eRFJu8isIlD4,74359
7
5
  pymodaq/splash.png,sha256=ow8IECF3tPRUMA4tf2tMu1aRiMaxx91_Y2ckVxkrmF0,53114
8
- pymodaq/control_modules/__init__.py,sha256=n4U8p-eW-rVESzeRipw7oXfofC15rUeJ0tQloVuucT0,82
9
- pymodaq/control_modules/daq_move.py,sha256=DYdTxYhzlxLk5zS1j6tvSWumLrOupIJ8B4yi_7OFup8,132
10
- pymodaq/control_modules/daq_viewer.py,sha256=YStfZtGtRRuF8gCPZa96jRsSw2vgZHDFYpT0q8SwcBM,138
11
- pymodaq/control_modules/move_utility_classes.py,sha256=JNMAzio7MtTywKtGreMNZd7WoGehq1B1_y9GSZJu5oI,212
12
- pymodaq/control_modules/viewer_utility_classes.py,sha256=-q7O0_SzbJ8m2p9zMixq1j-nqQ4ghhxzv9z7gyZN8p8,190
13
- pymodaq/daq_analysis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
- pymodaq/daq_analysis/daq_analysis_main.py,sha256=xSzMSy6ColSf2qFUUr3gfladquJJ5bH2xQOuo7WZu6Y,24394
15
- pymodaq/daq_measurement/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- pymodaq/daq_measurement/daq_measurement_GUI.py,sha256=1u7hWDaiwsZE56c0eDTUw6qfuezoxji_QaIjkcNx0eg,7438
17
- pymodaq/daq_measurement/daq_measurement_GUI.ui,sha256=PyzbCWPMkh5oIYYteZczXyWMeHKW9EJmM1QlzXhnyTk,7037
18
- pymodaq/daq_measurement/daq_measurement_main.py,sha256=FGcv0VUNPk2T5eeibIeRE0wtMsURWvpde1GTtChJUkg,17251
19
- pymodaq/daq_measurement/process_from_QtDesigner_DAQ_Measurement_GUI.bat,sha256=e1tu2A67MS9fk3jhriF6saQgRxWIucIvNW92iWXFP6E,164
20
- pymodaq/daq_move/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- pymodaq/daq_move/daq_move_gui.py,sha256=2lJVLMUUQtlqJj6WefpoVSaVbD_jrgy9nTiUDSaRRVI,15851
22
- pymodaq/daq_move/daq_move_gui.ui,sha256=S4dp9wtGJoSUbnr7-PQgZ9xTHpSiGS6eiUHCpJXf-7E,19690
23
- pymodaq/daq_move/daq_move_main.py,sha256=Es2jYXg6iu9-75dTUDabhP9Ibdnpdp1P52Dl5cMbP9w,46500
24
- pymodaq/daq_move/process_from_QtDesigner_DAQ_Move_GUI.bat,sha256=dbY49UHHvnaGH2pmoVj4Bd3Zq8MpaYar4eJKcr9O2Ss,166
25
- pymodaq/daq_move/utility_classes.py,sha256=tXA98EJRE_wGSWGt56vBjIIkK6mnSdzQe3gz2YzVmYU,30823
26
- pymodaq/daq_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
- pymodaq/daq_utils/array_manipulation.py,sha256=pCIrIZ0D0v6XZi0fUbmJC1anbIeeTKg13tiww-qBRBM,10419
28
- pymodaq/daq_utils/calibration_camera.py,sha256=mogipzCOaSjEz3STB-ae8KoznWDu6OY0hw8uEQHaF6E,8917
29
- pymodaq/daq_utils/chrono_timer.py,sha256=bNVvz4PYcUh82vwCL-Z_ZLwa2bbT1NdfYsMVdO_ZA0I,7248
30
- pymodaq/daq_utils/config.py,sha256=oFzdNrVrKBUCGL3m9RNIQ6dEoLSP8tErxlo3C5JrSWg,9408
31
- pymodaq/daq_utils/conftests.py,sha256=29N2XLuFiiS5tuJ9FjuUr6IdM0JEbcAwYfNV3UhGhHY,48
32
- pymodaq/daq_utils/custom_parameter_tree.py,sha256=PyY4ua6mHb2rwqS6qD6z54ExYewptYie24Lk2Z9ticQ,422
33
- pymodaq/daq_utils/daq_enums.py,sha256=58kxqNay1h6daCm4txzcsCnts4MorMOm-vuwv1m_M4Q,5639
34
- pymodaq/daq_utils/daq_utils.py,sha256=gd5Bzv1nbL8D5Gos4TTcqREZSxCvIeGPquSzwiIjyYc,44632
35
- pymodaq/daq_utils/enums.py,sha256=gyhm6vaFOAZT7C3jfFR8GUIcGeopbceG4_ePlvBbnSI,1745
36
- pymodaq/daq_utils/exceptions.py,sha256=JY02A4v077qjJyScBsHVk_tQUDNWnee0b_5IJiUQUek,1096
37
- pymodaq/daq_utils/h5backend.py,sha256=xuY3MItXZVGGNdyVTjAx0gjlRRJs6cyf483TGE_TmZQ,30591
38
- pymodaq/daq_utils/h5exporter_hyperspy.py,sha256=tloSxgbu0cKb0CmDCWSw2PfJ8giHIU3gc_QAGQkeJw0,5014
39
- pymodaq/daq_utils/h5exporters.py,sha256=N-F2UUYnGX56xGCmj5Qt974l1HTwBuMCyNBwi-n316o,8951
40
- pymodaq/daq_utils/h5modules.py,sha256=9Od9N8x28Vju7eQLbjsbVRR1BhYh4bPDN89cHIVOXsk,65847
41
- pymodaq/daq_utils/h5utils.py,sha256=UllU98Bst-agTZN9SClcXhFOxzVaQ7PRCnsg3pwkaqs,11721
42
- pymodaq/daq_utils/math_utils.py,sha256=g_M3eUewSyZ9sIhJFvAiiPu5f9C8z5xyO2LXJM-GX7U,23057
43
- pymodaq/daq_utils/messenger.py,sha256=nP2grihhNHqDRjDjYt26IRtciBxLxnGG_WIqp8NX3yA,1970
44
- pymodaq/daq_utils/qvariant.py,sha256=iIBp-DDk5OVBIEqX5SwqwrJyy5t2cRgFFyfgvxQOHqM,311
45
- pymodaq/daq_utils/scanner.py,sha256=F5-zrBeea-nCDtwfxXlbLfWRnmafI-r9PG1Quf2gPtY,61465
46
- pymodaq/daq_utils/tcp_server_client.py,sha256=xBluJuxVdyGWDEAW0KGP4te-gOjidYDAAWQmasrS6XU,39165
47
- pymodaq/daq_utils/Tuto innosetup/Tuto innosetup.odt,sha256=ASi5U8I2X3AQGkxFUl57aI0GYzHas5GAGZhaayNl9vY,418388
48
- pymodaq/daq_utils/Tuto innosetup/Tuto innosetup.pdf,sha256=SOHdEYGaHsa5FabwCX3oFzk0savgMw1I9Z4d00XSi9s,361273
49
- pymodaq/daq_utils/Tuto innosetup/script_full_setup.iss,sha256=q3sxWdgcFQSYHnJX73re4Bu1MlfrciiUx0uyAFlNsj4,12340
50
- pymodaq/daq_utils/abstract/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
- pymodaq/daq_utils/abstract/logger.py,sha256=2_vz4Ed8m8iDB_hJ4fjy_Mw-bqVGLDzlMKpCrT7DtBk,1017
52
- pymodaq/daq_utils/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
- pymodaq/daq_utils/db/db_logger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
- pymodaq/daq_utils/db/db_logger/db_logger.py,sha256=lhTrmvS34MKefJ70Gm9jAvhU-oTxezdEiJh2BQLsT1g,11182
55
- pymodaq/daq_utils/db/db_logger/db_logger_models.py,sha256=F3s4OuOUOT0PPn6vdpW1w5jRpjjzgQ5L2RQqzrAbZq8,2627
56
- pymodaq/daq_utils/gui_utils/__init__.py,sha256=SM9r3F81Lps8onuCkzWBzX5z38VYJwYYcGnRk9X8ItE,399
57
- pymodaq/daq_utils/gui_utils/custom_app.py,sha256=q5Zg3zIKLCo-6g2LHlejsQ47rmRGz1vc7A9eUX1go80,3420
58
- pymodaq/daq_utils/gui_utils/dock.py,sha256=TnAjOy67LUosKz6-mDLgjq-st0oB_uq1QPAnRZuHqUg,2658
59
- pymodaq/daq_utils/gui_utils/file_io.py,sha256=09LErRBSsoiHFTYorEotmfkiEAe72p6xIvq-BJR-gQE,2890
60
- pymodaq/daq_utils/gui_utils/layout.py,sha256=iI17guICQ-qdnz8GZTC1a7zbf9njowclvg_7AAiqHSI,1107
61
- pymodaq/daq_utils/gui_utils/list_picker.py,sha256=ddYnRTlRlgwdJSy0Q98IzYWHzIf2GS6ABl8XSS9kVXM,1190
62
- pymodaq/daq_utils/gui_utils/utils.py,sha256=FfJp9sUXBgduBF3HBxRe5JDzWLCUqaeBM23vIWx2_dw,4742
63
- pymodaq/daq_utils/gui_utils/widgets/__init__.py,sha256=eTjSTGNRjsP1VzIp_8fRTL7bm7KGne0eLwyxqzECNjk,174
64
- pymodaq/daq_utils/gui_utils/widgets/lcd.py,sha256=kAOtKzH8OGhyymnrGbrMUhSPoo5EtobLXAQsrW-5Hjo,3198
65
- pymodaq/daq_utils/gui_utils/widgets/push.py,sha256=_ze4Qtyb8S74OUbQfYObc08uPqL9qz7s46Rv8v6cLbI,2831
66
- pymodaq/daq_utils/gui_utils/widgets/qled.py,sha256=vCO2QeGqgOzn8l27AUe-4VSWUvkbmSyZhRT8aCIpOxA,2063
67
- pymodaq/daq_utils/gui_utils/widgets/spinbox.py,sha256=cDZLHcBxNj-UMhLIq0Pigq0uwmNI4kQpxEmu5LH5pow,260
68
- pymodaq/daq_utils/gui_utils/widgets/table.py,sha256=_O2ZergkO4v_tA5qOgaAha9fkHfl4y2Y1tTMkSyqOQo,8622
69
- pymodaq/daq_utils/managers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
- pymodaq/daq_utils/managers/action_manager.py,sha256=7-6aCbDJW6xipEGYdeS2WseiKYy7AoyUP6xPU2nKADw,8997
71
- pymodaq/daq_utils/managers/batchscan_manager.py,sha256=q1TQx0RBqSNWWEhCA5m_dVvhQg72Zkn4VXo5yJU3JE4,12467
72
- pymodaq/daq_utils/managers/modules_manager.py,sha256=398-1I1eQ60SJ_ylrd_vuMS8mu88JrYDSwIKS0nzpYU,17547
73
- pymodaq/daq_utils/managers/overshoot_manager.py,sha256=Yth7sqB7Y7L5-xqAzW8wf5pN_M1fmpc0OB6kJqng0tc,7170
74
- pymodaq/daq_utils/managers/parameter_manager.py,sha256=24ZRHspdvYqLDQTzbH3EM_O6IsAS9IVdTOb-ZSgu9pE,2043
75
- pymodaq/daq_utils/managers/preset_manager.py,sha256=6R1S9MPlKe5vxenWcOuFVw39opvtyzWE5UMngvyaMo8,7904
76
- pymodaq/daq_utils/managers/preset_manager_utils.py,sha256=dnGNp5JKki8h2y0g_LtusvKP_9gV-PMyzNrDVx1WI0w,8151
77
- pymodaq/daq_utils/managers/remote_manager.py,sha256=8_NbZHtsZoGNaC_DDNFqGIIuoWcr97D8Pet2OoJkUww,22170
78
- pymodaq/daq_utils/managers/roi_manager.py,sha256=BHGnkG1Xr0uc7orlBd3BnikSPEx5FNt_FX1iuZAj-3g,25173
79
- pymodaq/daq_utils/parameter/__init__.py,sha256=WFCpEjEbGPg_q8SY4_celSMA1F6MsMKAdzunvSAhk8E,77
80
- pymodaq/daq_utils/parameter/ioxml.py,sha256=L34tVPNyby-ikMj33ByNd4jlzv4r7-kcgPEaQm3xiNE,16422
81
- pymodaq/daq_utils/parameter/oldpymodaq_ptypes.py,sha256=-KJMKdBzdVhfcC26GtB1fKCz4LBmC1EpFeMbWeTqDG0,57090
82
- pymodaq/daq_utils/parameter/utils.py,sha256=yIeSztLb9ZXtl5E4OgCJdDSpgP7_SNbpplePJIDRad4,4168
83
- pymodaq/daq_utils/parameter/pymodaq_ptypes/__init__.py,sha256=V0Mgs4EFZoIi1voOG79Iwp125eXK7BvBjfucgNd_K_8,2007
84
- pymodaq/daq_utils/parameter/pymodaq_ptypes/bool.py,sha256=yz9-zn6T5NN7SDEWwf8tfw8Ezbllbt1rOd8vHGqw3mI,761
85
- pymodaq/daq_utils/parameter/pymodaq_ptypes/date.py,sha256=7mOGlw0ViJWD8au0HNsh-C9Fr4woZzkXhFs5Lno7yik,3706
86
- pymodaq/daq_utils/parameter/pymodaq_ptypes/filedir.py,sha256=ib3V8nDWaKREOYLC8sbeXJSZGQvqDpqulKUiPD9fcjg,4576
87
- pymodaq/daq_utils/parameter/pymodaq_ptypes/itemselect.py,sha256=Q5BTJM2YgiPduE_GxnEluMLW3b6JCdW5ooaL8N_LXT0,5458
88
- pymodaq/daq_utils/parameter/pymodaq_ptypes/led.py,sha256=tyEnAlnwIatVfGL0eo4FFSoj5G1-0srzEkITt8P6Nv4,1133
89
- pymodaq/daq_utils/parameter/pymodaq_ptypes/list.py,sha256=RKrLL_j7Fpsszn8isHb__e6sy-4QwxzKTavYuL1TOBM,4980
90
- pymodaq/daq_utils/parameter/pymodaq_ptypes/numeric.py,sha256=lzklQWAnzh9LDC20hdlGbAj2NdVzNDDeJke1KnPi7GU,560
91
- pymodaq/daq_utils/parameter/pymodaq_ptypes/pixmap.py,sha256=Bc9ttblIzuY67Hdg48hjijopW4GvEA5LnWoaYTo4Szo,2521
92
- pymodaq/daq_utils/parameter/pymodaq_ptypes/slide.py,sha256=_sL9jaQmDCXs4NOlECENEXgnOXk3g2sT37a8kRo9m_g,4714
93
- pymodaq/daq_utils/parameter/pymodaq_ptypes/table.py,sha256=vhhJ_VF0PYUofWMFuZ-m6GCUW1SvFqAUa1Ex6WO9siE,4819
94
- pymodaq/daq_utils/parameter/pymodaq_ptypes/tableview.py,sha256=EXMHEGlkL2JC7_fau2ysL3oCvq2XmeCuJNYEu-hp9iY,4866
95
- pymodaq/daq_utils/parameter/pymodaq_ptypes/text.py,sha256=W3yNXJxl5moWYKhCL0tzQgyQFDM6bWzOxmEDcaAd9js,4646
96
- pymodaq/daq_utils/plotting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
97
- pymodaq/daq_utils/plotting/gant_chart.py,sha256=Wsxa3FE6kuYnPyRSXRxRWVJNenDPcGlIg8eTAP_JK-I,4119
98
- pymodaq/daq_utils/plotting/image_viewer.py,sha256=06e9NkSo5I4Q0TbOs8b98gKGlxsFYkRUr8oUwrvQxsA,3450
99
- pymodaq/daq_utils/plotting/navigator.py,sha256=Vm--asJl_WZNdx1AW9tcDaMI2EW7Z_PeVIqbVtbGlR8,25021
100
- pymodaq/daq_utils/plotting/scan_selector.py,sha256=32pHsUFcqYhWpaBklwFLjGNGnp83jP6BQ9bsX0xgqNE,11826
101
- pymodaq/daq_utils/plotting/data_viewers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
102
- pymodaq/daq_utils/plotting/data_viewers/process_from_QtDesigner_0DViewer_GUI.bat,sha256=7TuMvpQqRBlcxFMeAEiOQp4gsvqJYAwjSY-Nvkfni6M,162
103
- pymodaq/daq_utils/plotting/data_viewers/viewer0D.py,sha256=0ZA2jQbzuVVsqH4IoQV9xiH98X74vQlhbwXHtjnRHXc,7426
104
- pymodaq/daq_utils/plotting/data_viewers/viewer0D_GUI.py,sha256=lZT8OfFzZheOziq3S3i6vAvsO6ureMjLRIyvy_EvkFY,4110
105
- pymodaq/daq_utils/plotting/data_viewers/viewer0D_GUI.ui,sha256=qsrmtDDB_j-KtqiwihMThl4hkNjZL_n5_Tu6fURYknc,3960
106
- pymodaq/daq_utils/plotting/data_viewers/viewer1D.py,sha256=8yLf_R04FjBZ70qlP9gYA9B2dvXa9PWRtXUym_6PJLU,31876
107
- pymodaq/daq_utils/plotting/data_viewers/viewer1Dbasic.py,sha256=y1lhd_xyOvbnVfEKitZRM0Tp0WXFFOcPMkxiyi7Mqs4,7292
108
- pymodaq/daq_utils/plotting/data_viewers/viewer2D.py,sha256=0KNJUHNLzOCqnhOan1ip0vWRD1kXx46KsX4xNfvzLxY,44920
109
- pymodaq/daq_utils/plotting/data_viewers/viewer2D_basic.py,sha256=R1SiPZnf84Mu_1GGQcJttUMTQWf3B_H2i0n3CMq_wAs,6469
110
- pymodaq/daq_utils/plotting/data_viewers/viewerND.py,sha256=Opjv1z7koMq-Ut_wXHy3Te82NWGgKM7xKUV8PM8uzfw,42645
111
- pymodaq/daq_utils/plotting/data_viewers/viewerbase.py,sha256=J98z4-8spKLB65OIPYcjCwdy7lmVVaYzl5AtjXSAbN0,2473
112
- pymodaq/daq_utils/plotting/items/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
- pymodaq/daq_utils/plotting/items/axis_scaled.py,sha256=dAXy0QMceQqkUb4Gn5nOA7iydnYpUBfJKWJOdDxNsyA,3223
114
- pymodaq/daq_utils/plotting/items/crosshair.py,sha256=hVoM3dDtRmYGfzZJsP-Yhyfnx2HV1g-nLSQMVl6ZZXY,3064
115
- pymodaq/daq_utils/plotting/items/image.py,sha256=359WOrukfDZoTBYj550g-WA-vRY_OXIUXjUh5Dazlqg,14499
116
- pymodaq/daq_utils/plotting/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
117
- pymodaq/daq_utils/plotting/utils/filter.py,sha256=lQu5rifpPudvun-f0gisYPvoBFiG1hbWvszcAbOaofc,9349
118
- pymodaq/daq_utils/plotting/utils/plot_utils.py,sha256=iVMrX_gLOxY90SUC-vBzXqOOIRUOkl04qmIXqsceSXw,13193
119
- pymodaq/daq_utils/plotting/utils/signalND.py,sha256=0FJYrioWv9G-ze--mB-z9B2a0kEouoUbSITfnvuZmGk,44608
120
- pymodaq/daq_utils/plotting/viewer0D/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
121
- pymodaq/daq_utils/plotting/viewer0D/viewer0D_main.py,sha256=SnN_WxkqhSiBeLG7TB-YDcFYl84MY3-ObZVF-NJc5yA,198
122
- pymodaq/daq_utils/plotting/viewer1D/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
- pymodaq/daq_utils/plotting/viewer1D/viewer1D_main.py,sha256=va6jGG9l1GD4gmc393hS3DNaXkBq0im6eh9lHYaqptg,198
124
- pymodaq/daq_utils/plotting/viewer1D/viewer1Dbasic.py,sha256=wt4l0id00BwFhnNcvYrmrVxnj8hou9zJs8RiR33qMCY,208
125
- pymodaq/daq_utils/plotting/viewer2D/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
126
- pymodaq/daq_utils/plotting/viewer2D/viewer_2D_basic.py,sha256=RuZOaxUNZqv-Ap9JZwCK302qzRcWWtj1jfEjqjrrkoQ,214
127
- pymodaq/daq_utils/plotting/viewer2D/viewer_2D_main.py,sha256=3GkUUEfh4L7fLviDTR76piT2dpRXoXgJ0ObH7lkZdZ8,198
128
- pymodaq/daq_utils/plotting/viewerND/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
129
- pymodaq/daq_utils/plotting/viewerND/viewerND_main.py,sha256=fFBm7rQ0vrn9WpcLmq7of3ZiJnucvBVPmkpZ-v4_jIo,198
130
- pymodaq/daq_utils/tree_layout/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
131
- pymodaq/daq_utils/tree_layout/tree_layout_main.py,sha256=V90_rTloULydvcWQpsy7G9cUGXJNC_R3motexHHxSrs,6198
132
- pymodaq/daq_viewer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
133
- pymodaq/daq_viewer/daq_gui_settings.py,sha256=5ZIpF2hIrcUJ-W2OOZtt1GNCh1e9fh6Hy129rhSXXrA,12862
134
- pymodaq/daq_viewer/daq_gui_settings.ui,sha256=e4yBLpcH2u72i6B8MgOBP1Lve_7xklK0vu7nrg-_DMA,15877
135
- pymodaq/daq_viewer/daq_viewer_main.py,sha256=vZKUnX--bCY3HZvMLSe40jxbFp2yk5EPdmVVZGndtx4,101375
136
- pymodaq/daq_viewer/process_from_QtDesigner_DAQ_GUI_settings.bat,sha256=4azdb4bcMYYKMnizykcKwgSdBnv--Ya3WsCnGoMM3YM,176
137
- pymodaq/daq_viewer/utility_classes.py,sha256=arVpeQH70jsFRmPUKK94lxGwok4_MpD_nPz_mx2584g,27157
6
+ pymodaq/control_modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ pymodaq/control_modules/daq_move.py,sha256=2bF2QlKUyMQGLhfDTO3wsBKK9SzFanmbHXygsJTRgW8,39848
8
+ pymodaq/control_modules/daq_move_ui.py,sha256=Rys26PqKXhhYyZIysTjZ5YrOzO-A4vEFIgkgH-0yBWg,12919
9
+ pymodaq/control_modules/daq_viewer.py,sha256=TB0p11VPAyMuW-iPd1qEqExVmilLIbQLi0JPtUIQmKk,64099
10
+ pymodaq/control_modules/daq_viewer_ui.py,sha256=eu5QqTGcHfivypxC1a3QIcJK6fn9Ecz5L95sTp1Rl4Q,15462
11
+ pymodaq/control_modules/mocks.py,sha256=hh_xSWp9g1UV3NAQVD9Ft9tNWfTsSvKU0OU0trgzP2w,1956
12
+ pymodaq/control_modules/move_utility_classes.py,sha256=L1pXVcbsISzgryraqa9Uvip8QBlo9lxmB43ARlcfh6g,30500
13
+ pymodaq/control_modules/utils.py,sha256=Wy5HSrfF7QnA6kwqRDMi4irne6RneyINTZN4yC_UohI,8006
14
+ pymodaq/control_modules/viewer_utility_classes.py,sha256=piGlf6D5SnI-_L1TPIuCU6YqYWNlEGwdwNzvy-RAshw,26665
138
15
  pymodaq/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
139
- pymodaq/examples/custom_app.py,sha256=Dio2gGJ4k8EH6PWogpzTtrW3Rqsdxu2J9jQ1zLRrk14,11159
140
- pymodaq/examples/custom_viewer.py,sha256=5XFs6ACq4XHkjhbQszcRoIqViT5WSFF2RWgsSJKxlgQ,4540
141
- pymodaq/examples/function_plotter.py,sha256=Isgu-o_p7g1yle_-rK_jeEino1xyfrqz9x37t1HaBE8,6027
142
- pymodaq/examples/nonlinearscanner.py,sha256=cGEUe9niZA3SqHb-zrYezZRUBAQRXsZAyn9R5Ye7uMM,3760
143
- pymodaq/examples/parameter_ex.py,sha256=5NUl11v-ITH6MDKYk0uvLA_t8T6xZEfPsSGEgTMwrCA,7215
16
+ pymodaq/examples/custom_app.py,sha256=C9-XjjnxxQ_tj4N6BXNW4K7DSLbCW0GkGxHoT0oQwuc,11127
17
+ pymodaq/examples/custom_viewer.py,sha256=Fefiox1hmLzIwXnBvVNfgmeKNTeX4cdMHVU_p9Qxq-E,4492
18
+ pymodaq/examples/function_plotter.py,sha256=T-VT0Rd3jHP9GcR2h6Nao6lwZE06P8zWUbOlz8b8Rxk,6104
19
+ pymodaq/examples/nonlinearscanner.py,sha256=x0R2_FP0YnuOCCAmYRiAiZ1jfUdRxu5RqIYLyGQMZ0U,3790
20
+ pymodaq/examples/parameter_ex.py,sha256=cnGXD-g5yNLlklNTondw-6A0u8w_TW5ZDaijIP27aQI,7187
21
+ pymodaq/examples/preset_MockCamera.xml,sha256=quQlMsX6YSoqqc9_9Y-9zu3TDM6Xvnuc2JSWwg9f948,15774
144
22
  pymodaq/examples/Labview_TCP_Client/DAQ_TCP_Client.aliases,sha256=t0eKH9Uq_AMk4wQ-6Pm5mKUjGcCvfT9GtvMsvDhkCUk,47
145
23
  pymodaq/examples/Labview_TCP_Client/DAQ_TCP_Client.lvlps,sha256=VZHH96rKSnRYKeCAXUmKI3vQOX8Wz53FYCF2yXuqnaU,84
146
24
  pymodaq/examples/Labview_TCP_Client/DAQ_TCP_Client.lvproj,sha256=eYzmQO3XFxCJS-WMTjfyUBmmogxJUi7Nu5h64tKVlow,1984
@@ -156,23 +34,37 @@ pymodaq/examples/Labview_TCP_Client/DAQ_TCP_send_scalar.vi,sha256=uYnMjYMQdfQqRu
156
34
  pymodaq/examples/Labview_TCP_Client/DAQ_TCP_send_string.vi,sha256=hdHU78daP5EOrX-co1TofhMLcKMQ9ODGXKcFx_IScGM,19791
157
35
  pymodaq/examples/Labview_TCP_Client/client_state.ctl,sha256=IxYi5Og0QXFB1e0VeBL23sIOYOCImf7uMzitIuPlagw,4293
158
36
  pymodaq/examples/Labview_TCP_Client/cmd_types.ctl,sha256=gwuDyGcte11Zqx0C-U8ljRyYCQleUPh18MYqg9GtxPg,4618
159
- pymodaq/examples/logger_image/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
160
- pymodaq/examples/logger_image/logger_displayer.py,sha256=p342-veNMMTk1DB8QFZKBWBU_bAlQzzEuCItuD0UEGo,4219
161
- pymodaq/examples/logger_image/setup.svg,sha256=n2EGgDPnjxVWoRRCDDvCDjBrOcF8sr6K457pfqd76Wk,203730
162
- pymodaq/examples/logger_image/setup_svg.py,sha256=84w3r91oFlBlzXWS0vnCUES4HTwNTrpBKZA1bJI9DX4,3519
163
- pymodaq/pid/__init__.py,sha256=MwN3f-R36VXR4XnYm2ejvlh9heJxl9yRZzF0f9HAuQQ,482
164
- pymodaq/pid/daq_move_PID.py,sha256=1apHqlKaLnsve2CLaRv3EuT8eFGSGBbVUWxK2QB166c,3131
165
- pymodaq/pid/pid_controller.py,sha256=fH9zr0EXcvgjArtWS6gxVlZp7hAEEooPKCzs3r-Ls5o,29004
166
- pymodaq/pid/utils.py,sha256=zf0jbNVU3B2lZvcs9nKYC-lJ4fGV4aMtW_rjGKAGxZU,6296
167
- pymodaq/resources/VERSION,sha256=2--_fazweHkHug5yKwnaIzydH6az4acNfhiV5ve-PVE,7
37
+ pymodaq/extensions/__init__.py,sha256=EnlA2Pv8B2HSYzHz_QJhxvWBSEaE1BvFQEA_puxuD9U,321
38
+ pymodaq/extensions/console.py,sha256=SOKQCZtOB6sqtI7JoiG7sRfL1KWLGGI_3VGDEva2Ufg,2522
39
+ pymodaq/extensions/daq_logger.py,sha256=XyioZeGYwqIM7uA5MDezYjRSoutMlWAgrUOL2ANIwug,19481
40
+ pymodaq/extensions/daq_scan.py,sha256=sQzsWENxokKssU_imNdCwE0_reMqk-HW9VaCgJifZ2w,56107
41
+ pymodaq/extensions/daq_scan_ui.py,sha256=tizak66Zg7Ao6__RiUq8bYuILNlir-BrJGKivEHfhcQ,10123
42
+ pymodaq/extensions/h5browser.py,sha256=3hX53yA67WD-m5S5ifilCNuHnreSdXyOtBNfD8UXYFU,513
43
+ pymodaq/extensions/utils.py,sha256=bwSGkeYRGUYO1q6YOorfbb1CLWQxvHzUaN89RQgot1U,1176
44
+ pymodaq/extensions/pid/__init__.py,sha256=YP5CemFZ54mFlFIhktct2SeOmkAuvxQm2y1Fiq5HiMQ,534
45
+ pymodaq/extensions/pid/daq_move_PID.py,sha256=UVtxY0PJT2HMhVKzPPCMwI__pkjmzDWAKXvaPmtHLCw,3139
46
+ pymodaq/extensions/pid/pid_controller.py,sha256=hxY6mMZ7-Odbb06aEepCd8Y36DABlkCyJmIIR5ifW3o,29797
47
+ pymodaq/extensions/pid/utils.py,sha256=pxNyOCEruCT1lsn0MUrukMbL0nN3xDwVzT6uSXj0T5k,8074
48
+ pymodaq/post_treatment/__init__.py,sha256=xaaLFZJ7OLqI_7yPurFk89A7m2ywSbYDXAsdE-QQ8Zg,81
49
+ pymodaq/post_treatment/load_and_plot.py,sha256=7hvHaWMRt3aSHRM-Fw53gNxNnvLdaV1wwcJ-1NmpoSE,8247
50
+ pymodaq/post_treatment/process_to_scalar.py,sha256=rHIHN5lB8H9IbMKMYJRBI-MxzdbuGrYW4uoMD_QEGq8,11562
51
+ pymodaq/post_treatment/daq_analysis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
+ pymodaq/post_treatment/daq_analysis/daq_analysis_main.py,sha256=jvt_QzXeG_dzaaZB8PduhRh6jK3bzS8uikXoJ-afW5I,24346
53
+ pymodaq/post_treatment/daq_measurement/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
+ pymodaq/post_treatment/daq_measurement/daq_measurement_GUI.py,sha256=1u7hWDaiwsZE56c0eDTUw6qfuezoxji_QaIjkcNx0eg,7438
55
+ pymodaq/post_treatment/daq_measurement/daq_measurement_GUI.ui,sha256=PyzbCWPMkh5oIYYteZczXyWMeHKW9EJmM1QlzXhnyTk,7037
56
+ pymodaq/post_treatment/daq_measurement/daq_measurement_main.py,sha256=CAKwcWMOD86aXB8mbdxOK7e8nZRos5d59FzDtqK1QoY,17093
57
+ pymodaq/post_treatment/daq_measurement/process_from_QtDesigner_DAQ_Measurement_GUI.bat,sha256=e1tu2A67MS9fk3jhriF6saQgRxWIucIvNW92iWXFP6E,164
58
+ pymodaq/resources/VERSION,sha256=lUFnWur5aHa4KKb5AL_5fbGopmvNZbXOiUt8UXgKsA0,17
168
59
  pymodaq/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
169
- pymodaq/resources/config_template.toml,sha256=jcw037kS41zx6cDN95Ybr9rRAf7MiwpHQCALy6RM8VY,2741
170
- pymodaq/resources/preset_default.xml,sha256=qVa31OEm2NjNDbVa4UZ8pbHhi4dZj1QPAA4_VTOuQ6o,31549
60
+ pymodaq/resources/config_template.toml,sha256=SvUTT3mkizOcergQ6uz8uZYn0ZpB_qPtIHzpJuoASIc,3280
61
+ pymodaq/resources/preset_default.xml,sha256=HsBS6uUDo4816f-BwfqPuZIJcw7kUcHO5i_svF6J514,31231
171
62
  pymodaq/resources/triangulation_data.npy,sha256=Dzq6eE8f_i7Woloy1iUn6N1OfVdBZ4WnK4J4SCoqXso,9320
172
- pymodaq/resources/QtDesigner_Ressources/QtDesigner_ressources.bat,sha256=WyfE5WsFfWbGHtBEdijUqU0xvlfjgoQnwcq2emz-UsQ,207
173
- pymodaq/resources/QtDesigner_Ressources/QtDesigner_ressources.qrc,sha256=a6HmXg13FQWr0rEBcxIAb2BnuJY9t8hvxTI1NnL5q40,9760
174
- pymodaq/resources/QtDesigner_Ressources/QtDesigner_ressources_rc.py,sha256=6tm-LtoQiFE3Dud1jO_p7cYHJy5olePKHRuOYyGFpCM,8185716
63
+ pymodaq/resources/QtDesigner_Ressources/QtDesigner_ressources.bat,sha256=gqBmrc6Cfzn7wIZQtzgcglKRQ8zLXLW9Xt8LWxkJdw0,205
64
+ pymodaq/resources/QtDesigner_Ressources/QtDesigner_ressources.qrc,sha256=XPSp6RncdnVf7jrR706UIEg1OyklvVDLwvbke1PkMB4,9800
65
+ pymodaq/resources/QtDesigner_Ressources/QtDesigner_ressources_rc.py,sha256=9G8Ji2QQ67A65var1Pu3jc9CWsqEU5XvQps_8nLRUTM,8225442
175
66
  pymodaq/resources/QtDesigner_Ressources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
+ pymodaq/resources/QtDesigner_Ressources/icons.svg,sha256=7leLubaJv4E_JnmTdQw00HvrmFBZ3koShefBUbZ2UkU,5703
176
68
  pymodaq/resources/QtDesigner_Ressources/Icon_Library/1d.png,sha256=9xwBNhu7ZMNI22BmQDOifViZjPUdMJkmITuBxRng_xY,174
177
69
  pymodaq/resources/QtDesigner_Ressources/Icon_Library/2d.png,sha256=TeGjYFDsJiYlUK85_S_0WQiYuEPODLy9e8IWOC4N5Gg,217
178
70
  pymodaq/resources/QtDesigner_Ressources/Icon_Library/3d.png,sha256=Zm2ZMJI3hluFjtkpL0eeMwoivHhaRGXq4-3B3nc4T3Q,287
@@ -364,7 +256,7 @@ pymodaq/resources/QtDesigner_Ressources/Icon_Library/rgb_icon.png,sha256=IayVgf3
364
256
  pymodaq/resources/QtDesigner_Ressources/Icon_Library/robot.png,sha256=CKo1Ycg3xm50lUMwqxasmWdUsQ4kqTfG6HLriYVpoe0,49951
365
257
  pymodaq/resources/QtDesigner_Ressources/Icon_Library/rotation2.png,sha256=mw8kZB8CXp0KoWiWjbVx1UfRJqcrkVnoaaLY6cAfKsE,47140
366
258
  pymodaq/resources/QtDesigner_Ressources/Icon_Library/run2.png,sha256=yrHS32Q72NiKYzvMnuSkEmWWTZl-DIxPgaKT-3WX6JU,143
367
- pymodaq/resources/QtDesigner_Ressources/Icon_Library/run_all.png,sha256=umUTRTi9DEgNjgZNFeu4JL4ZD-3AohzlOr51L00_jrk,220
259
+ pymodaq/resources/QtDesigner_Ressources/Icon_Library/run_all.png,sha256=IbYzGxQKOgQumsSozh_1EzIrblXqTi3tiYc1K9QV1e0,7132
368
260
  pymodaq/resources/QtDesigner_Ressources/Icon_Library/saturation.png,sha256=rLk5ATwWHIXBAB3nhQt_lO7cTyJTe2DQNkCcSxxIBhA,242
369
261
  pymodaq/resources/QtDesigner_Ressources/Icon_Library/save_ROI.png,sha256=_jsY1i91WFqGx2BUnaNBORwpo0O4c6xJ9C1VrhO9JFU,1956
370
262
  pymodaq/resources/QtDesigner_Ressources/Icon_Library/scale_horizontally.png,sha256=tOQ-myhWdFVotVl7xZ7hbMtwUZFEVHqM0Hbk3vAHNuw,296
@@ -383,6 +275,7 @@ pymodaq/resources/QtDesigner_Ressources/Icon_Library/status_cancelled.png,sha256
383
275
  pymodaq/resources/QtDesigner_Ressources/Icon_Library/stop.png,sha256=ga46vTJCWkj3OStoU4whpSxIVmjnURi4zBhGAIqfz1g,108
384
276
  pymodaq/resources/QtDesigner_Ressources/Icon_Library/stop2.png,sha256=vAmSKIkBG0lT6qc0erGwr5LZkbovDgfuK8YRHvgW4ro,734
385
277
  pymodaq/resources/QtDesigner_Ressources/Icon_Library/stop3.png,sha256=FvDmFuhSnoacdmCPPjFkZv33fmGLy93oZopy2dd0zVc,183
278
+ pymodaq/resources/QtDesigner_Ressources/Icon_Library/stop_all.png,sha256=VptxwigRYUCURFp88ikWCuVf_XknbEAF_gczUB-Hphk,1614
386
279
  pymodaq/resources/QtDesigner_Ressources/Icon_Library/sum.png,sha256=rXeFWjgD32BcdvfVlKr3a4rLvd6gj76Bfm5q0VXayak,166
387
280
  pymodaq/resources/QtDesigner_Ressources/Icon_Library/surfacePlot.png,sha256=hBFQ8qt5H-zkaI8uGjeibSnl415aJSp3WSie1n3duXw,50597
388
281
  pymodaq/resources/QtDesigner_Ressources/Icon_Library/tree.png,sha256=LHWbE-bo37kUKiySmy_DCU6AaW9iQ4PMhp8nKFtc2Mg,274
@@ -398,18 +291,122 @@ pymodaq/resources/QtDesigner_Ressources/Icon_Library/yellow_light.png,sha256=fNh
398
291
  pymodaq/resources/QtDesigner_Ressources/Icon_Library/zip_file.png,sha256=Ocg1h0RqSM9S1Ve1ELXCLE3J84a8ZAT1_Ijsk9Ikc-I,585
399
292
  pymodaq/resources/QtDesigner_Ressources/Icon_Library/zoomAuto.png,sha256=ln1ug-HpkhjP_0bqw9iTU5lDLbGaZfCwruS52UD4Xh0,451
400
293
  pymodaq/resources/QtDesigner_Ressources/Icon_Library/zoomReset.png,sha256=ySEGC4DmhMbWZa0DokSKZpGwDMC4Zkghrhsi0CSI3cc,453
401
- pymodaq/utils/__init__.py,sha256=WXpnjxSsoinzpxEjoUk97XYFK4gmAZ2QyaLN4G2ceCA,1299
402
- pymodaq/utils/array_manipulation.py,sha256=AdiICeXxL1FwlNyUZt7wG_IvOMjPaV4HWU959bL9nNo,286
403
- pymodaq/utils/daq_utils.py,sha256=nbFzi85Q4dj5OHclQjrv0VkAIEDDKoxJyxq-HEfs8jk,259
404
- pymodaq/utils/data.py,sha256=nbFzi85Q4dj5OHclQjrv0VkAIEDDKoxJyxq-HEfs8jk,259
405
- pymodaq/utils/logger.py,sha256=1BDuLCgPrsqyhwTOrCOsanQ30c1CjwT5nWbDsGaTtl0,258
406
- pymodaq/utils/math_utils.py,sha256=JFU3IEurAx-GHAlIhcNrPTZfxka5y7Ij7QTnNqAbReY,262
407
- pymodaq/utils/scanner.py,sha256=EjyIedSunJ4PS-E-c8h_oBoOTGccsGwQIxWFKuvS4IE,252
408
- pymodaq/utils/parameter/__init__.py,sha256=nNuJVQofqtZpADqqL6XjxbUg4XHcjYLPsGos5iJpqeg,259
409
- pymodaq/utils/parameter/utils.py,sha256=7f5miX1WYLfcmbKkxrwpmJo4W5dE9UrXQANDZMwHs6c,257
410
- pymodaq-3.6.13.dist-info/LICENSE,sha256=VKOejxexXAe3XwfhAhcFGqeXQ12irxVHdeAojZwFEI8,1108
411
- pymodaq-3.6.13.dist-info/METADATA,sha256=hZwSvB9r3RMaggaEfZt1E93OhPQWTc8Ln6cdMbYL-aI,1353
412
- pymodaq-3.6.13.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
413
- pymodaq-3.6.13.dist-info/entry_points.txt,sha256=DNKebpCIM5lFuwMYGWhWPxk4zjaYK_ClLj5XTuxgh5s,313
414
- pymodaq-3.6.13.dist-info/top_level.txt,sha256=1detOxOdHm2YOL9MQJ17TiR_Gr5nWqW_us7-mtD6__Y,8
415
- pymodaq-3.6.13.dist-info/RECORD,,
294
+ pymodaq/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
295
+ pymodaq/utils/array_manipulation.py,sha256=uMdiVVR2mU7j6Z4DKL5VGhUPqiWvFX2YK7RLMGdLyC8,10415
296
+ pymodaq/utils/calibration_camera.py,sha256=Hs-kZbGj9d8oNOqey6ONly60Ghf3JMBz4-Ls2yXeoKM,8921
297
+ pymodaq/utils/chrono_timer.py,sha256=rwX8apS8B-IKhA0Cp2H9tLz0BRN7G3Pg5ptozvd3MKM,7244
298
+ pymodaq/utils/config.py,sha256=6iDR0rknFA5rs9d58c_3nMpL4hnT-jWjlOz1W_nFNdw,15404
299
+ pymodaq/utils/conftests.py,sha256=3Ak8WEpa3EhAp73Yb1LLq8YFONhPqiL7gG9eSDIoTNc,58
300
+ pymodaq/utils/daq_utils.py,sha256=ugbnhAiGqUrSxSsPGMOe4iRwOWKuAvEPDc1NuX6UlxY,26941
301
+ pymodaq/utils/data.py,sha256=SZH6ymtaTYCzznA8rCqK_ZsG2t5zA8GaA89NEfTpcSQ,69686
302
+ pymodaq/utils/enums.py,sha256=WNU6w3tsNpP7HQnNrQ6eKnDTXulOlZufQRr11__-l0M,1822
303
+ pymodaq/utils/exceptions.py,sha256=jsUN_wFyRpLQiyjkZqq6jeCC8iuHWfCSUKRr9CHiyLY,587
304
+ pymodaq/utils/factory.py,sha256=OLPxzbgpvIuxMN9e59O768NN25FXagcLuE8juvVbhT0,2311
305
+ pymodaq/utils/logger.py,sha256=JPaLBeu5NAd_5xvkzj4BRviLqXgFlu7b7B8ADfE7-L8,2604
306
+ pymodaq/utils/math_utils.py,sha256=zWI83o7uqdnPTYf4MxKxNvtJ7rm7jTidAP9xXSZn6lU,17513
307
+ pymodaq/utils/messenger.py,sha256=N5SPc9NomIGtK0TihQ0oq9evlxyWNYELWfpr2s8PoWw,2072
308
+ pymodaq/utils/qvariant.py,sha256=iIBp-DDk5OVBIEqX5SwqwrJyy5t2cRgFFyfgvxQOHqM,311
309
+ pymodaq/utils/slicing.py,sha256=H2p7JX-jGpYMvZQqDei0yW15FSLWnpHzNKnlwa9esvs,1373
310
+ pymodaq/utils/tcp_server_client.py,sha256=8lep8b6jJavKCVxfOL0CtoNKjH5sDI7uUfpYOm0Jc3o,39074
311
+ pymodaq/utils/units.py,sha256=Tj4O5qZBMBuUbjTZSH10UzSbU5z_SHVSu2VLw82tceE,3959
312
+ pymodaq/utils/Tuto innosetup/Tuto innosetup.odt,sha256=ASi5U8I2X3AQGkxFUl57aI0GYzHas5GAGZhaayNl9vY,418388
313
+ pymodaq/utils/Tuto innosetup/Tuto innosetup.pdf,sha256=SOHdEYGaHsa5FabwCX3oFzk0savgMw1I9Z4d00XSi9s,361273
314
+ pymodaq/utils/Tuto innosetup/script_full_setup.iss,sha256=z3RTQ1YWQ0j-dhkOkwqLQdwiy0BfXmwU1Uno0-El4CE,12343
315
+ pymodaq/utils/abstract/__init__.py,sha256=m7GEoQdFlnWuhwp-qlJ5S_Il6pKDyMEX8MAPlfDSxKU,1260
316
+ pymodaq/utils/abstract/logger.py,sha256=I-t-2nSIVHHUfHJ-3IoqsuULZiIsXRe4saotaEL3-Fk,1095
317
+ pymodaq/utils/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
318
+ pymodaq/utils/db/db_logger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
319
+ pymodaq/utils/db/db_logger/db_logger.py,sha256=wzZj20pYluSPGsy_9uleWzLIEC2dR3rTPfYNOo9sipE,12416
320
+ pymodaq/utils/db/db_logger/db_logger_models.py,sha256=_QCA1bFneNtw7kme8WMCQj14ANHRt2ZOmWXyOuUZaZI,3459
321
+ pymodaq/utils/gui_utils/__init__.py,sha256=tRFUKN4E4o9t-L2W7irkzzaDai32tYsl2XHqZ4Cr6Uo,403
322
+ pymodaq/utils/gui_utils/custom_app.py,sha256=gJbRZS5ySFQIC5QnLTC6I2-AJjEoQc3q9FSR6dGjF80,4394
323
+ pymodaq/utils/gui_utils/dock.py,sha256=TnAjOy67LUosKz6-mDLgjq-st0oB_uq1QPAnRZuHqUg,2658
324
+ pymodaq/utils/gui_utils/file_io.py,sha256=Vpo9zS6T5FbIdbcLlWR6U9U72oz_ZE57DwxCY9gCVIo,2217
325
+ pymodaq/utils/gui_utils/layout.py,sha256=6oczLLGwwEN4EQ8yUDnz0-4Ue2wlyCRklKsVD1GNcz8,1099
326
+ pymodaq/utils/gui_utils/list_picker.py,sha256=ddYnRTlRlgwdJSy0Q98IzYWHzIf2GS6ABl8XSS9kVXM,1190
327
+ pymodaq/utils/gui_utils/utils.py,sha256=CkXpcJCniAWsDrdC8hve0-wOlbxPaERnAUNhSmqqIy4,5172
328
+ pymodaq/utils/gui_utils/widgets/__init__.py,sha256=LThGzmbFKbp2FtTTF_L7pHjyBzfB7F_bhMF4rPTwrUY,195
329
+ pymodaq/utils/gui_utils/widgets/label.py,sha256=C2MU8i_Yy_oVRW7yal_ghB1Y5Bj_a9o8IFZWW3br-KM,600
330
+ pymodaq/utils/gui_utils/widgets/lcd.py,sha256=qGtl_zUod39GmIAtGjx3_m9La9hk1QdEpHmsQAWDDVc,3294
331
+ pymodaq/utils/gui_utils/widgets/push.py,sha256=pS_KTG6JV4EKmaUzpX1pAX5RsXXDeRxBWOEwcY-BZKA,4748
332
+ pymodaq/utils/gui_utils/widgets/qled.py,sha256=HuVDYApG8rwiiNhVrN-ZWZ2W8OxK7A29MX1zQAKjJqc,2096
333
+ pymodaq/utils/gui_utils/widgets/spinbox.py,sha256=7ofk_v2Kwmf2RnQx0_OMXxsr1RTZ3t0kBbod28sWw9M,741
334
+ pymodaq/utils/gui_utils/widgets/table.py,sha256=4CHleg-ckZNO_Q_9et0emxI-IsYLDHqeeCoVxmGRQnk,8614
335
+ pymodaq/utils/h5modules/__init__.py,sha256=60TRC2y5ONHfl71z7b6Vu20h9J0AhQYRJscUylOHFa0,22
336
+ pymodaq/utils/h5modules/backends.py,sha256=UMH7MJiOFGLPVfbktR5C1YAzF9FO8TS_l0tGuCFd0ec,31651
337
+ pymodaq/utils/h5modules/browsing.py,sha256=VRwCQYjB86OVUsKR63rOwN_QhAPoir6_aMte9KvoBJo,26370
338
+ pymodaq/utils/h5modules/data_saving.py,sha256=boO5oaLe6Qw6J9gqdT-8mfmZN9SjT_DbYvRUj7k6wsE,31499
339
+ pymodaq/utils/h5modules/h5logging.py,sha256=CJ7P1CSBYww23ZgiYgXIcxDGEnx9jDrBmByqGQIrJVg,4567
340
+ pymodaq/utils/h5modules/module_saving.py,sha256=hP2y9xJBtkrytWXr7ME2ZlSzXNhDTSA5-uY2DuZqKV8,12061
341
+ pymodaq/utils/h5modules/saving.py,sha256=WnFPxbVSOCO3GZ6gAntW694s2nmMGjycwZ6uXwHMjtc,36566
342
+ pymodaq/utils/h5modules/utils.py,sha256=MgR8qDmUApB4lR8Qfef8tiiShq9XDYpjXuB9To7DrPQ,2336
343
+ pymodaq/utils/managers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
344
+ pymodaq/utils/managers/action_manager.py,sha256=UYE0cx8CDB8IrhVx68_3tJ61ZrbWYHAmTRXyHqb6Kgc,16788
345
+ pymodaq/utils/managers/batchscan_manager.py,sha256=jcL08YvFafX5kiy03BV1_6obt2Xogiby5pvTKeN8_ho,13905
346
+ pymodaq/utils/managers/modules_manager.py,sha256=RgYuI0m4ugS9KUSJ097RWMOYqwPUGFuc0M9dsRCFZL4,20277
347
+ pymodaq/utils/managers/overshoot_manager.py,sha256=eMkW_IsF2nNvq1-ROIf1iSMHHfYiCCLQQMTAoqzn1tY,7158
348
+ pymodaq/utils/managers/parameter_manager.py,sha256=qfsKfzQ-EzRunMEbuPyOweO_DCFXotrmo3U2w-hsDVM,4095
349
+ pymodaq/utils/managers/preset_manager.py,sha256=aFI4xZhHxXUBZCdDWtprFr6NBK5B_sUeBTea8A7OVm8,8205
350
+ pymodaq/utils/managers/preset_manager_utils.py,sha256=8A4z0pW2lyzjg3K1AYxX-pIhMNROKdo-gxPEEL-cUIY,8172
351
+ pymodaq/utils/managers/remote_manager.py,sha256=-BtQvHy32ltZehej8jyK0GzfIdu9OnO8ukLAGrsWvMw,22216
352
+ pymodaq/utils/managers/roi_manager.py,sha256=MDW-emef7uoIC3m3Ps71xjfWXwfVj1otBJf9eDcNzxM,28454
353
+ pymodaq/utils/parameter/__init__.py,sha256=rfXpqq0yxkKwCCxuiTHTB8Z54o9MtO_vn8zVgUn-k-g,106
354
+ pymodaq/utils/parameter/ioxml.py,sha256=IMWLrWfTrZneVtA70Gzzq5I_u997hQZsXgRqAuYghi4,16536
355
+ pymodaq/utils/parameter/utils.py,sha256=6P9I_zGz6NU0PbVYBmZ_dykDOFIsDhlyToET9d1w2Wo,6408
356
+ pymodaq/utils/parameter/pymodaq_ptypes/__init__.py,sha256=NNPGOTfpft27W4mxHbqcgfq6bFdaFW0NlfFHx-kwjP4,1988
357
+ pymodaq/utils/parameter/pymodaq_ptypes/bool.py,sha256=yz9-zn6T5NN7SDEWwf8tfw8Ezbllbt1rOd8vHGqw3mI,761
358
+ pymodaq/utils/parameter/pymodaq_ptypes/date.py,sha256=7mOGlw0ViJWD8au0HNsh-C9Fr4woZzkXhFs5Lno7yik,3706
359
+ pymodaq/utils/parameter/pymodaq_ptypes/filedir.py,sha256=IVFbN08Dr3NdRNMufBef1vWr2igiULq3CBu10-yLqSQ,4571
360
+ pymodaq/utils/parameter/pymodaq_ptypes/itemselect.py,sha256=dnj1qBzxwmdPpQ2Sk5lfmOolb1rgWqhGikhItoARuoo,5553
361
+ pymodaq/utils/parameter/pymodaq_ptypes/led.py,sha256=oDKM3k4aPy_CArgQIEqjLx3KG5CR7NrywacJKalmKQ4,1129
362
+ pymodaq/utils/parameter/pymodaq_ptypes/list.py,sha256=RKrLL_j7Fpsszn8isHb__e6sy-4QwxzKTavYuL1TOBM,4980
363
+ pymodaq/utils/parameter/pymodaq_ptypes/numeric.py,sha256=lzklQWAnzh9LDC20hdlGbAj2NdVzNDDeJke1KnPi7GU,560
364
+ pymodaq/utils/parameter/pymodaq_ptypes/pixmap.py,sha256=PnSEU8uT29UhbiL4uNsoc_dnKDCeGTBuEz_28K3unsE,5228
365
+ pymodaq/utils/parameter/pymodaq_ptypes/slide.py,sha256=x3n6CNezOboFsK-vjjciGT_4CDrUGdgsW7LwLDGHRPk,4716
366
+ pymodaq/utils/parameter/pymodaq_ptypes/table.py,sha256=kM6Kb_KZfJ-sA6tSgn76EDBZK_Cbpc4jfw2KEJ5E2Cg,4819
367
+ pymodaq/utils/parameter/pymodaq_ptypes/tableview.py,sha256=EXMHEGlkL2JC7_fau2ysL3oCvq2XmeCuJNYEu-hp9iY,4866
368
+ pymodaq/utils/parameter/pymodaq_ptypes/text.py,sha256=W3yNXJxl5moWYKhCL0tzQgyQFDM6bWzOxmEDcaAd9js,4646
369
+ pymodaq/utils/plotting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
370
+ pymodaq/utils/plotting/gant_chart.py,sha256=srLHBYfhUEofsyi7Lt_YRyx2z8wigq0R2AU_Z4-TsrU,4097
371
+ pymodaq/utils/plotting/image_viewer.py,sha256=06e9NkSo5I4Q0TbOs8b98gKGlxsFYkRUr8oUwrvQxsA,3450
372
+ pymodaq/utils/plotting/navigator.py,sha256=9Ly0qlVooAbCAxDj8SMKSFIqMmSJKo7LfTckTpe6q-A,13882
373
+ pymodaq/utils/plotting/scan_selector.py,sha256=iXNqs0ZXvTZ-kIrG-Zxo660GM6iEBif0IjQQA_zorG4,16602
374
+ pymodaq/utils/plotting/widgets.py,sha256=aD0ebvQrJYNkkwdE43c1Judqxn9rohQ37zvt3fLSjVE,2338
375
+ pymodaq/utils/plotting/data_viewers/__init__.py,sha256=UgiOlnw3DpSu3IilOHUDnyEszi4x-2WuU_t6cuG1amo,179
376
+ pymodaq/utils/plotting/data_viewers/viewer.py,sha256=cSnwM6n2Fv8116yb9-tSszta2FlMqNOzm1-nWZ4yPfw,12480
377
+ pymodaq/utils/plotting/data_viewers/viewer0D.py,sha256=YBl5Cg7eiWcke3naYiSNSJt4kohICjYVwGD-6rDY288,9028
378
+ pymodaq/utils/plotting/data_viewers/viewer1D.py,sha256=kdfntqTVr_7Bay-gCD6AOy5nLGU8-L_MQ5L3w3VEemo,19969
379
+ pymodaq/utils/plotting/data_viewers/viewer1Dbasic.py,sha256=sfqiuNPlsF2SbhFwVfLD7CzfKD7UUlHITb5LC1clXE0,7407
380
+ pymodaq/utils/plotting/data_viewers/viewer2D.py,sha256=9I8ge0zHRBGzr6MO78feCFyqImZL0F2g6JTDsePwzfk,41922
381
+ pymodaq/utils/plotting/data_viewers/viewer2D_basic.py,sha256=MgxQBiPrMOTYB3KReylS7XGeoVoFP059HW0D33Z5zsc,5567
382
+ pymodaq/utils/plotting/data_viewers/viewerND.py,sha256=0fQAPEbRaQqakzonwBATdHdVwDeAgKW9T7xGTSq_REo,34930
383
+ pymodaq/utils/plotting/items/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
384
+ pymodaq/utils/plotting/items/axis_scaled.py,sha256=YVSqpSs2gfALdsH_wKheYf6fgEQ0-7tU2zWu709K3h4,3245
385
+ pymodaq/utils/plotting/items/crosshair.py,sha256=hVoM3dDtRmYGfzZJsP-Yhyfnx2HV1g-nLSQMVl6ZZXY,3064
386
+ pymodaq/utils/plotting/items/image.py,sha256=Si2nsHE-3RyN247E2MjNJPU7YQgUQpDwSFmBAyFIZVQ,14600
387
+ pymodaq/utils/plotting/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
388
+ pymodaq/utils/plotting/utils/axes_viewer.py,sha256=FcJ_lWZ0h8hEfFkuGVjbNkF3cXOrUcvUO_HrN1d7ru4,2939
389
+ pymodaq/utils/plotting/utils/filter.py,sha256=z5T904rZ0gO0IIIigVXyJGaSQ9aHUemUMgpVaoNMVys,21044
390
+ pymodaq/utils/plotting/utils/lineout.py,sha256=ihYj5P-XMfAtvm0lGLie6nv7onf3CuDU0XBWilId_6k,7945
391
+ pymodaq/utils/plotting/utils/plot_utils.py,sha256=b7a4spEN0lQfUzv5t390ApIe8TqIdXhd3IdYEkX1KrM,17131
392
+ pymodaq/utils/plotting/utils/signalND.py,sha256=pprtf7aOwb6235VVicJCojJJAkBk92X9GPvqgq4gveg,44892
393
+ pymodaq/utils/scanner/__init__.py,sha256=uaPJSAKogMG33BiYePaGv3QQPbReSOYx4Lwzi7zk83s,346
394
+ pymodaq/utils/scanner/scan_factory.py,sha256=IrtZUpPhP9GpTw8j1tupNdhofsNdDo4Fg7vCDnGS7M8,7019
395
+ pymodaq/utils/scanner/scanner.py,sha256=Ow0A55iobDHXBr7Lbovbdu5oitziuTeTgtiEkYiw98g,9905
396
+ pymodaq/utils/scanner/utils.py,sha256=IhmCDn2AdGy8fKuwGkUKWk6_D7ZyZgVO3uwYlW06jjo,2843
397
+ pymodaq/utils/scanner/scanners/_1d_scanners.py,sha256=TDfDZz3MyNiMegAJDAj3fIrrP2xtQRHn2Kc6cK3fz5E,4672
398
+ pymodaq/utils/scanner/scanners/_2d_scanners.py,sha256=UkqQoM46O8ClybGUNHrJphveivrTolZik3ht9KzWqFE,12852
399
+ pymodaq/utils/scanner/scanners/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
400
+ pymodaq/utils/scanner/scanners/sequential.py,sha256=a2KNq2brqHU_AfvS0WSmqxv7WZKnm6Q8yG1g-KOezZ4,7646
401
+ pymodaq/utils/scanner/scanners/tabular.py,sha256=XBhilHoiQvDZRmOfJmAG824Xd1MUts-uQNjARKOkOvY,12514
402
+ pymodaq/utils/svg/__init__.py,sha256=QWpeotkNhAQkoVTdWBH8t6MRr9-lrPJx4bXn7J6fCNA,81
403
+ pymodaq/utils/svg/svg_renderer.py,sha256=USEcrOWmQAq8UM620e_XIGPI6z9IQmhyJuqbPo3jLzE,406
404
+ pymodaq/utils/svg/svg_view.py,sha256=bmXpDqnw9S-Bp3F8Hi_oeYB5Y9gebiCNsQWVJzCq-PA,901
405
+ pymodaq/utils/svg/svg_viewer2D.py,sha256=LTJ3Ulb5zWXdRPr7vqcWumbpq7ZctzrYUMtD5QV3x60,1523
406
+ pymodaq/utils/tree_layout/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
407
+ pymodaq/utils/tree_layout/tree_layout_main.py,sha256=OCXj59SzVQPi1ksxxvvbr5AIZ5mXN0_JdwcNMMR5wUg,6625
408
+ pymodaq-4.0.1.dist-info/METADATA,sha256=_sz4cOuYMFpyE1S7d7f3sB4Spl4bwJlzpF2onj915Ow,7335
409
+ pymodaq-4.0.1.dist-info/WHEEL,sha256=y1bSCq4r5i4nMmpXeUJMqs3ipKvkZObrIXSvJHm1qCI,87
410
+ pymodaq-4.0.1.dist-info/entry_points.txt,sha256=RAzdYNjvUT28I2eiCKki_g2NzXq0woWxhev6lwzwRv8,348
411
+ pymodaq-4.0.1.dist-info/licenses/LICENSE,sha256=VKOejxexXAe3XwfhAhcFGqeXQ12irxVHdeAojZwFEI8,1108
412
+ pymodaq-4.0.1.dist-info/RECORD,,
@@ -1,5 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.38.4)
2
+ Generator: hatchling 1.17.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
-
@@ -0,0 +1,8 @@
1
+ [console_scripts]
2
+ daq_logger = pymodaq.extensions.daq_logger:main
3
+ daq_move = pymodaq.control_modules.daq_move:main
4
+ daq_scan = pymodaq.extensions.daq_scan:main
5
+ daq_viewer = pymodaq.control_modules.daq_viewer:main
6
+ dashboard = pymodaq.dashboard:main
7
+ h5browser = pymodaq.extensions.h5browser:main
8
+ parameter_example = pymodaq.examples.parameter_ex:main