pymodaq 4.1.5__py3-none-any.whl → 4.2.0__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 (79) hide show
  1. pymodaq/__init__.py +41 -4
  2. pymodaq/control_modules/daq_move.py +32 -73
  3. pymodaq/control_modules/daq_viewer.py +73 -98
  4. pymodaq/control_modules/daq_viewer_ui.py +2 -1
  5. pymodaq/control_modules/move_utility_classes.py +17 -7
  6. pymodaq/control_modules/utils.py +153 -5
  7. pymodaq/control_modules/viewer_utility_classes.py +31 -20
  8. pymodaq/dashboard.py +23 -5
  9. pymodaq/examples/tcp_client.py +97 -0
  10. pymodaq/extensions/__init__.py +4 -0
  11. pymodaq/extensions/bayesian/__init__.py +2 -0
  12. pymodaq/extensions/bayesian/bayesian_optimisation.py +673 -0
  13. pymodaq/extensions/bayesian/utils.py +403 -0
  14. pymodaq/extensions/daq_scan.py +4 -4
  15. pymodaq/extensions/daq_scan_ui.py +2 -1
  16. pymodaq/extensions/pid/pid_controller.py +12 -7
  17. pymodaq/extensions/pid/utils.py +9 -26
  18. pymodaq/extensions/utils.py +3 -0
  19. pymodaq/post_treatment/load_and_plot.py +42 -19
  20. pymodaq/resources/VERSION +1 -1
  21. pymodaq/resources/config_template.toml +9 -24
  22. pymodaq/resources/setup_plugin.py +1 -1
  23. pymodaq/utils/config.py +103 -5
  24. pymodaq/utils/daq_utils.py +35 -134
  25. pymodaq/utils/data.py +614 -95
  26. pymodaq/utils/enums.py +17 -1
  27. pymodaq/utils/factory.py +2 -2
  28. pymodaq/utils/gui_utils/custom_app.py +5 -2
  29. pymodaq/utils/gui_utils/dock.py +33 -4
  30. pymodaq/utils/gui_utils/utils.py +14 -1
  31. pymodaq/utils/h5modules/backends.py +9 -1
  32. pymodaq/utils/h5modules/data_saving.py +254 -57
  33. pymodaq/utils/h5modules/saving.py +1 -0
  34. pymodaq/utils/leco/daq_move_LECODirector.py +172 -0
  35. pymodaq/utils/leco/daq_xDviewer_LECODirector.py +170 -0
  36. pymodaq/utils/leco/desktop.ini +2 -0
  37. pymodaq/utils/leco/director_utils.py +58 -0
  38. pymodaq/utils/leco/leco_director.py +88 -0
  39. pymodaq/utils/leco/pymodaq_listener.py +279 -0
  40. pymodaq/utils/leco/utils.py +41 -0
  41. pymodaq/utils/managers/action_manager.py +20 -6
  42. pymodaq/utils/managers/parameter_manager.py +6 -4
  43. pymodaq/utils/managers/roi_manager.py +63 -54
  44. pymodaq/utils/math_utils.py +1 -1
  45. pymodaq/utils/plotting/data_viewers/__init__.py +3 -1
  46. pymodaq/utils/plotting/data_viewers/base.py +286 -0
  47. pymodaq/utils/plotting/data_viewers/viewer.py +29 -202
  48. pymodaq/utils/plotting/data_viewers/viewer0D.py +94 -47
  49. pymodaq/utils/plotting/data_viewers/viewer1D.py +341 -174
  50. pymodaq/utils/plotting/data_viewers/viewer1Dbasic.py +1 -1
  51. pymodaq/utils/plotting/data_viewers/viewer2D.py +271 -181
  52. pymodaq/utils/plotting/data_viewers/viewerND.py +26 -22
  53. pymodaq/utils/plotting/items/crosshair.py +3 -3
  54. pymodaq/utils/plotting/items/image.py +2 -1
  55. pymodaq/utils/plotting/plotter/plotter.py +94 -0
  56. pymodaq/utils/plotting/plotter/plotters/__init__.py +0 -0
  57. pymodaq/utils/plotting/plotter/plotters/matplotlib_plotters.py +134 -0
  58. pymodaq/utils/plotting/plotter/plotters/qt_plotters.py +78 -0
  59. pymodaq/utils/plotting/utils/axes_viewer.py +1 -1
  60. pymodaq/utils/plotting/utils/filter.py +194 -147
  61. pymodaq/utils/plotting/utils/lineout.py +13 -11
  62. pymodaq/utils/plotting/utils/plot_utils.py +89 -12
  63. pymodaq/utils/scanner/__init__.py +0 -3
  64. pymodaq/utils/scanner/scan_config.py +1 -9
  65. pymodaq/utils/scanner/scan_factory.py +10 -36
  66. pymodaq/utils/scanner/scanner.py +3 -2
  67. pymodaq/utils/scanner/scanners/_1d_scanners.py +7 -5
  68. pymodaq/utils/scanner/scanners/_2d_scanners.py +36 -49
  69. pymodaq/utils/scanner/scanners/sequential.py +10 -4
  70. pymodaq/utils/scanner/scanners/tabular.py +10 -5
  71. pymodaq/utils/slicing.py +1 -1
  72. pymodaq/utils/tcp_ip/serializer.py +38 -5
  73. pymodaq/utils/tcp_ip/tcp_server_client.py +25 -17
  74. {pymodaq-4.1.5.dist-info → pymodaq-4.2.0.dist-info}/METADATA +4 -2
  75. {pymodaq-4.1.5.dist-info → pymodaq-4.2.0.dist-info}/RECORD +78 -63
  76. pymodaq/resources/config_scan_template.toml +0 -42
  77. {pymodaq-4.1.5.dist-info → pymodaq-4.2.0.dist-info}/WHEEL +0 -0
  78. {pymodaq-4.1.5.dist-info → pymodaq-4.2.0.dist-info}/entry_points.txt +0 -0
  79. {pymodaq-4.1.5.dist-info → pymodaq-4.2.0.dist-info}/licenses/LICENSE +0 -0
@@ -8,6 +8,7 @@ from collections import OrderedDict
8
8
  import select
9
9
  from typing import List
10
10
  import socket
11
+ from threading import Timer
11
12
 
12
13
  import numpy as np
13
14
  from qtpy.QtCore import QObject, Signal, Slot, QThread
@@ -23,6 +24,7 @@ from pymodaq.utils.parameter import Parameter
23
24
  from pymodaq.utils.data import DataToExport
24
25
  from pymodaq.utils.tcp_ip.mysocket import Socket
25
26
  from pymodaq.utils.tcp_ip.serializer import Serializer, DeSerializer
27
+ from pymodaq.utils.managers.parameter_manager import ParameterManager
26
28
 
27
29
  config = Config()
28
30
 
@@ -36,18 +38,13 @@ tcp_parameters = [
36
38
 
37
39
 
38
40
  class TCPClientTemplate:
39
- params = []
40
-
41
- def __init__(self, ipaddress="192.168.1.62", port=6341, params_state=None, client_type=""):
41
+ def __init__(self, ipaddress="192.168.1.62", port=6341, client_type=""):
42
42
  """Create a socket client
43
43
 
44
44
  Parameters
45
45
  ----------
46
46
  ipaddress: (str) the IP address of the server
47
47
  port: (int) the port where to communicate with the server
48
- params_state: (dict) state of the Parameter settings of the module instantiating this client and wishing to
49
- export its settings to the server. Obtained from param.saveState() where param is an
50
- instance of Parameter object, see pyqtgraph.parametertree::Parameter
51
48
  client_type: (str) should be one of the accepted client_type by the TCPServer instance (within pymodaq it is
52
49
  either 'GRABBER' or 'ACTUATOR'
53
50
  """
@@ -58,14 +55,8 @@ class TCPClientTemplate:
58
55
  self._socket: Socket = None
59
56
  self._deserializer: DeSerializer = None
60
57
  self.connected = False
61
- self.settings = Parameter.create(name='Settings', type='group', children=self.params)
62
- if params_state is not None:
63
- if isinstance(params_state, dict):
64
- self.settings.restoreState(params_state)
65
- elif isinstance(params_state, Parameter):
66
- self.settings.restoreState(params_state.saveState())
67
-
68
58
  self.client_type = client_type
59
+ self.timer = Timer(0.1, self.poll_connection)
69
60
 
70
61
  @property
71
62
  def socket(self) -> Socket:
@@ -87,12 +78,15 @@ class TCPClientTemplate:
87
78
  self.socket.connect((self.ipaddress, self.port))
88
79
 
89
80
  def init_connection(self, extra_commands=[]):
90
- """init the socket connection then call the post_init method where to place custom initialization"""
81
+ """init the socket connection then call the post_init method where to place custom
82
+ initialization"""
91
83
  try:
92
84
  self._connect_socket()
93
85
  self.post_init(extra_commands)
94
86
  self.connected = True
87
+
95
88
  self.poll_connection()
89
+ #self.timer.start()
96
90
 
97
91
  except ConnectionRefusedError as e:
98
92
  self.not_connected(e)
@@ -110,7 +104,7 @@ class TCPClientTemplate:
110
104
  if len(in_error) != 0:
111
105
  self.ready_with_error()
112
106
 
113
- if len(ready_to_write) != 0:
107
+ if len(ready_to_write) != 0:
114
108
  self.ready_to_write()
115
109
 
116
110
  QtWidgets.QApplication.processEvents()
@@ -154,11 +148,18 @@ class TCPClient(TCPClientTemplate, QObject):
154
148
  The client itself communicate with a TCP server, it is best to use a server object subclassing the TCPServer
155
149
  class defined within this python module
156
150
 
151
+ Parameters
152
+ ----------
153
+ params_state: (dict) state of the Parameter settings of the module instantiating this client and wishing to
154
+ export its settings to the server. Obtained from param.saveState() where param is an
155
+ instance of Parameter object, see pyqtgraph.parametertree::Parameter
156
+
157
157
  """
158
158
  cmd_signal = Signal(ThreadCommand) # signal to connect with a module slot in order to start communication back
159
159
  params = []
160
160
 
161
- def __init__(self, ipaddress="192.168.1.62", port=6341, params_state=None, client_type="GRABBER"):
161
+ def __init__(self, ipaddress="192.168.1.62", port=6341, params_state=None,
162
+ client_type="GRABBER"):
162
163
  """Create a socket client particularly fit to be used with PyMoDAQ's TCPServer
163
164
 
164
165
  Parameters
@@ -172,7 +173,14 @@ class TCPClient(TCPClientTemplate, QObject):
172
173
  either 'GRABBER' or 'ACTUATOR'
173
174
  """
174
175
  QObject.__init__(self)
175
- TCPClientTemplate.__init__(self, ipaddress, port, params_state, client_type)
176
+ TCPClientTemplate.__init__(self, ipaddress, port, client_type)
177
+
178
+ self.settings = Parameter.create(name='Settings', type='group', children=self.params)
179
+ if params_state is not None:
180
+ if isinstance(params_state, dict):
181
+ self.settings.restoreState(params_state)
182
+ elif isinstance(params_state, Parameter):
183
+ self.settings.restoreState(params_state.saveState())
176
184
 
177
185
  def send_data(self, data: DataToExport):
178
186
  # first send 'Done' and then send the length of the list
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pymodaq
3
- Version: 4.1.5
3
+ Version: 4.2.0
4
4
  Summary: Modular Data Acquisition with Python
5
5
  Project-URL: Homepage, http://pymodaq.cnrs.fr
6
6
  Project-URL: Source, https://github.com/PyMoDAQ/PyMoDAQ
@@ -44,15 +44,17 @@ Classifier: Topic :: Scientific/Engineering :: Visualization
44
44
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
45
45
  Classifier: Topic :: Software Development :: User Interfaces
46
46
  Requires-Python: >=3.7
47
+ Requires-Dist: bayesian-optimization
47
48
  Requires-Dist: easydict
48
49
  Requires-Dist: importlib-metadata; python_version < '3.8'
49
50
  Requires-Dist: multipledispatch
50
51
  Requires-Dist: numpy<2.0.0
51
52
  Requires-Dist: packaging
52
53
  Requires-Dist: pint
54
+ Requires-Dist: pyleco; python_version >= '3.8'
53
55
  Requires-Dist: pymodaq-plugin-manager>=0.0.17
54
56
  Requires-Dist: pymodaq-plugins-mock
55
- Requires-Dist: pyqtgraph<=0.13.3
57
+ Requires-Dist: pyqtgraph>=0.12
56
58
  Requires-Dist: python-dateutil
57
59
  Requires-Dist: qdarkstyle
58
60
  Requires-Dist: qtconsole
@@ -1,16 +1,16 @@
1
- pymodaq/__init__.py,sha256=vvhkqhCRMqRirmTAtjOIIjENzzHWHtkU3805BH-KIcw,3439
2
- pymodaq/dashboard.py,sha256=aKG7XhO7e4S_9nv1MdrCFW5xJ2ADJ6evDIgaPy6ih3w,63635
1
+ pymodaq/__init__.py,sha256=EjnfWRmdRCssq-NZgHAEtvbOOFlKrroCvCGm1DwLCAg,4991
2
+ pymodaq/dashboard.py,sha256=4JK_I5M_KbGTyw18ws5cA9NwRersn7yAj_g6u2Ud4LA,64575
3
3
  pymodaq/icon.ico,sha256=hOHHfNDENKphQvG1WDleSEYcHukneR2eRFJu8isIlD4,74359
4
4
  pymodaq/splash.png,sha256=ow8IECF3tPRUMA4tf2tMu1aRiMaxx91_Y2ckVxkrmF0,53114
5
5
  pymodaq/control_modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
- pymodaq/control_modules/daq_move.py,sha256=j4yL4BCRaDiyWA0Yk3dUh2vPIf2tvlqdwgO8FV_VPFE,36583
6
+ pymodaq/control_modules/daq_move.py,sha256=ygtVvhZHjfMYUmIASnpMppdESnEVg46PeYpuom1sn8o,34532
7
7
  pymodaq/control_modules/daq_move_ui.py,sha256=sviVOHASH4zjCIfhWzh42v35_n4JaUwUh-t5dFzQBo4,14530
8
- pymodaq/control_modules/daq_viewer.py,sha256=XJ6PHOg_Emz2-Leg9Fw2k91Mlmz00RFk3xm4NGZnJFI,58421
9
- pymodaq/control_modules/daq_viewer_ui.py,sha256=EfWnXQYcq4x5qOA2GIuYRBcD0L5Gak44lJ7WqwOrFe4,15646
8
+ pymodaq/control_modules/daq_viewer.py,sha256=E9DDC8LaOZsxciEo05CTfBp8zXmc-_N017l00e836lc,57316
9
+ pymodaq/control_modules/daq_viewer_ui.py,sha256=FWP3jdIOR9vTgYqNaaodteGZ3dwgQ1GdWKrOpOAuSrs,15693
10
10
  pymodaq/control_modules/mocks.py,sha256=hh_xSWp9g1UV3NAQVD9Ft9tNWfTsSvKU0OU0trgzP2w,1956
11
- pymodaq/control_modules/move_utility_classes.py,sha256=oMPmkLnnTDc2r2EX20nhdg0z7exynCYVxuEGBCrRpb4,32605
12
- pymodaq/control_modules/utils.py,sha256=1qkPQLR2S2_4mtxaZWDNjz2LXPs6vZakTaThdZsJUDE,13872
13
- pymodaq/control_modules/viewer_utility_classes.py,sha256=iRE726I-wvG6N6cbq909_HXfaj-GEKRhDRBD6gC5ZRA,25655
11
+ pymodaq/control_modules/move_utility_classes.py,sha256=8ePiQUQ7AEBnhn4CjWPjMmo10yLznGHF9-s28OzYWGg,33382
12
+ pymodaq/control_modules/utils.py,sha256=-_qU8HeFzWpO4dBK3jZLijDziU_vT8yGwGyxchycnC8,20272
13
+ pymodaq/control_modules/viewer_utility_classes.py,sha256=XHL0UOi9rfDezyePaiBhh4KiAH0qeogo3AipA9ei2O8,26509
14
14
  pymodaq/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
15
  pymodaq/examples/custom_app.py,sha256=2wQR0hlPWjZrWK0abNF6ASv8iQyJqRn2CKnBa_nAgN4,10452
16
16
  pymodaq/examples/custom_viewer.py,sha256=IeLqiDkIIxLps5juaW1fVSNSzOKt5iceyzwV0DJTbnM,4813
@@ -18,6 +18,7 @@ pymodaq/examples/function_plotter.py,sha256=T-VT0Rd3jHP9GcR2h6Nao6lwZE06P8zWUbOl
18
18
  pymodaq/examples/nonlinearscanner.py,sha256=x0R2_FP0YnuOCCAmYRiAiZ1jfUdRxu5RqIYLyGQMZ0U,3790
19
19
  pymodaq/examples/parameter_ex.py,sha256=yuUjHfiZg6LjNN0QYxZH264AjZt5SikNQRTVnqVS8jY,8067
20
20
  pymodaq/examples/preset_MockCamera.xml,sha256=quQlMsX6YSoqqc9_9Y-9zu3TDM6Xvnuc2JSWwg9f948,15774
21
+ pymodaq/examples/tcp_client.py,sha256=FSdPlb3R_rxxNIqPqHVU8PxJzNZeFk_93l4TqsB5SnA,2584
21
22
  pymodaq/examples/Labview_TCP_Client/DAQ_TCP_Client.aliases,sha256=t0eKH9Uq_AMk4wQ-6Pm5mKUjGcCvfT9GtvMsvDhkCUk,47
22
23
  pymodaq/examples/Labview_TCP_Client/DAQ_TCP_Client.lvlps,sha256=VZHH96rKSnRYKeCAXUmKI3vQOX8Wz53FYCF2yXuqnaU,84
23
24
  pymodaq/examples/Labview_TCP_Client/DAQ_TCP_Client.lvproj,sha256=eYzmQO3XFxCJS-WMTjfyUBmmogxJUi7Nu5h64tKVlow,1984
@@ -33,19 +34,22 @@ pymodaq/examples/Labview_TCP_Client/DAQ_TCP_send_scalar.vi,sha256=uYnMjYMQdfQqRu
33
34
  pymodaq/examples/Labview_TCP_Client/DAQ_TCP_send_string.vi,sha256=hdHU78daP5EOrX-co1TofhMLcKMQ9ODGXKcFx_IScGM,19791
34
35
  pymodaq/examples/Labview_TCP_Client/client_state.ctl,sha256=IxYi5Og0QXFB1e0VeBL23sIOYOCImf7uMzitIuPlagw,4293
35
36
  pymodaq/examples/Labview_TCP_Client/cmd_types.ctl,sha256=gwuDyGcte11Zqx0C-U8ljRyYCQleUPh18MYqg9GtxPg,4618
36
- pymodaq/extensions/__init__.py,sha256=EnlA2Pv8B2HSYzHz_QJhxvWBSEaE1BvFQEA_puxuD9U,321
37
+ pymodaq/extensions/__init__.py,sha256=MGZb_QDwL5nlV7XLvBGW9x0GpUwPSpECyD8lCf9EN38,459
37
38
  pymodaq/extensions/console.py,sha256=SOKQCZtOB6sqtI7JoiG7sRfL1KWLGGI_3VGDEva2Ufg,2522
38
39
  pymodaq/extensions/daq_logger.py,sha256=7G7LzL_Xu7PEQUk-N-3lQXEochysCmvv_bbf2nGUpmE,19508
39
- pymodaq/extensions/daq_scan.py,sha256=SKpMhtI5yyBoNC55-c1WXgDSG5rRYWXm1WmilKIXSks,54243
40
- pymodaq/extensions/daq_scan_ui.py,sha256=zp9dCOnsWdPRe0LuU8hxhTf8L3t2eo-MjBd8xiHX_mk,10134
40
+ pymodaq/extensions/daq_scan.py,sha256=3G1n7DTUm7sCFjfcYRohTwGcqxp_PNzpFp11DaVw4WU,54192
41
+ pymodaq/extensions/daq_scan_ui.py,sha256=bYJaWBLQMl2Yu1PAxc-bCldh4keWXd6l12ttrHqExE0,10181
41
42
  pymodaq/extensions/h5browser.py,sha256=T0AwRbTraEJNEDI7TC86i1Fl2AgcpmHcNBbyvLW6L0k,1159
42
- pymodaq/extensions/utils.py,sha256=lGyPCnN8PEWuSNbQisHjd4PBMjlnh_Zz2BqJplkvqE4,1881
43
+ pymodaq/extensions/utils.py,sha256=MEWdfJUp1EMnmwGnVQ61eGFZJ7fne29pEEDD6Jrk50M,1942
44
+ pymodaq/extensions/bayesian/__init__.py,sha256=QMV9tq8Axi6YjoGj4UguBO8Zvuh26r5s91bm6YU7Itk,55
45
+ pymodaq/extensions/bayesian/bayesian_optimisation.py,sha256=zB6DoyHx6nsKHsl3G4T0Hsw8npl80gdEIwvNfx4DCrU,30033
46
+ pymodaq/extensions/bayesian/utils.py,sha256=7arnxz_nDtlOFwe6QQfV-nFciCWw3ZcE8YUNd_fce1k,15455
43
47
  pymodaq/extensions/pid/__init__.py,sha256=YP5CemFZ54mFlFIhktct2SeOmkAuvxQm2y1Fiq5HiMQ,534
44
48
  pymodaq/extensions/pid/daq_move_PID.py,sha256=EiTJz4fLcjVL1UxnFREu2oZEz2nl-iL5xgxf83YG85M,3090
45
- pymodaq/extensions/pid/pid_controller.py,sha256=-0_Flv4PnF9N3CyJ45LRtVbLmH9P5rhwCSGJxnkge6Q,28317
46
- pymodaq/extensions/pid/utils.py,sha256=OPMKbfnjj4fW0I5jPRBuMjn0thPNFrTQLwd3or6xUPw,8476
49
+ pymodaq/extensions/pid/pid_controller.py,sha256=y0LTF_3N4mKEeRXyvgPycIy4FMPr-kRxLHgl1BV_YLc,28453
50
+ pymodaq/extensions/pid/utils.py,sha256=KPSGlaiQsjH30GIN5Oy75OUFIgGTl8JU8dtHSR8JRjQ,7965
47
51
  pymodaq/post_treatment/__init__.py,sha256=xaaLFZJ7OLqI_7yPurFk89A7m2ywSbYDXAsdE-QQ8Zg,81
48
- pymodaq/post_treatment/load_and_plot.py,sha256=CZP8MbJUzhKMmnpwb-Z1nw_HBR5sZ5rRsVmHSRVtsp4,10954
52
+ pymodaq/post_treatment/load_and_plot.py,sha256=UZaAMrC3b9VXcsZsjc3-7LxxUEuia_5ECUqDB7G_EoM,12140
49
53
  pymodaq/post_treatment/process_to_scalar.py,sha256=NHntybqpDhDjQJ224Dhf9Ij_ql-fAEMRT6egA6UEGfA,11568
50
54
  pymodaq/post_treatment/daq_analysis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
55
  pymodaq/post_treatment/daq_measurement/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -53,12 +57,11 @@ pymodaq/post_treatment/daq_measurement/daq_measurement_GUI.py,sha256=1u7hWDaiwsZ
53
57
  pymodaq/post_treatment/daq_measurement/daq_measurement_GUI.ui,sha256=PyzbCWPMkh5oIYYteZczXyWMeHKW9EJmM1QlzXhnyTk,7037
54
58
  pymodaq/post_treatment/daq_measurement/daq_measurement_main.py,sha256=CAKwcWMOD86aXB8mbdxOK7e8nZRos5d59FzDtqK1QoY,17093
55
59
  pymodaq/post_treatment/daq_measurement/process_from_QtDesigner_DAQ_Measurement_GUI.bat,sha256=e1tu2A67MS9fk3jhriF6saQgRxWIucIvNW92iWXFP6E,164
56
- pymodaq/resources/VERSION,sha256=sg-e7oU9ys7iAyVQEcek_hr0ETD8p8owGadqrtmQp9I,18
60
+ pymodaq/resources/VERSION,sha256=6Gq08tcA4IxdsUkcOBXAIxu3adgAyv8CF8s17Yr6vNU,17
57
61
  pymodaq/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
- pymodaq/resources/config_scan_template.toml,sha256=zlbFO6pOdrLOFJTVMXfek8YpvOo29tqv0aTjGnB7_mA,570
59
- pymodaq/resources/config_template.toml,sha256=b91pWeFlKKN-HPpYkwzBLEsEQnoKEM6GmNKQq7aCfts,3352
62
+ pymodaq/resources/config_template.toml,sha256=klU5XH_2DBkF8QLIS-ZBQZCKfhwnrxyQHoG2meCEmEA,2889
60
63
  pymodaq/resources/preset_default.xml,sha256=Dt8iWLwPPOPtcG00JCVP-mh-G7KC6B0YN8hd8RQdnNI,27256
61
- pymodaq/resources/setup_plugin.py,sha256=4AePAZvrBE_bAa1vwHW2aa-JwmgR-2lriTVKp0Nsavs,3103
64
+ pymodaq/resources/setup_plugin.py,sha256=yab26FHPB-zsUZ6ZiKQ7Rm9H1ZhoZW8RQoW4wPK-T94,3130
62
65
  pymodaq/resources/triangulation_data.npy,sha256=Dzq6eE8f_i7Woloy1iUn6N1OfVdBZ4WnK4J4SCoqXso,9320
63
66
  pymodaq/resources/QtDesigner_Ressources/QtDesigner_ressources.bat,sha256=gqBmrc6Cfzn7wIZQtzgcglKRQ8zLXLW9Xt8LWxkJdw0,205
64
67
  pymodaq/resources/QtDesigner_Ressources/QtDesigner_ressources.qrc,sha256=FNkP7sgx3rbhW60mTkqYSL3hbiAFZcEgDG_1J2jLTII,9974
@@ -299,18 +302,18 @@ pymodaq/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
299
302
  pymodaq/utils/array_manipulation.py,sha256=uMdiVVR2mU7j6Z4DKL5VGhUPqiWvFX2YK7RLMGdLyC8,10415
300
303
  pymodaq/utils/calibration_camera.py,sha256=d3aAu0izXOdeLs-vyBaFfBuvyDGT3O-SreTuyd0Kvs4,8921
301
304
  pymodaq/utils/chrono_timer.py,sha256=rwX8apS8B-IKhA0Cp2H9tLz0BRN7G3Pg5ptozvd3MKM,7244
302
- pymodaq/utils/config.py,sha256=iaZpoI-l5KkCKlE49k6IPcRXKB_Ai6bi72Vaf6a2Xbg,12480
305
+ pymodaq/utils/config.py,sha256=v0WoSscW0i-pFCrjCE9RVrfCH9Ef7mbqx3gmUp1xT8w,15883
303
306
  pymodaq/utils/conftests.py,sha256=3Ak8WEpa3EhAp73Yb1LLq8YFONhPqiL7gG9eSDIoTNc,58
304
- pymodaq/utils/daq_utils.py,sha256=CEsvUBd7h-kqefPj6JDGO3ArjV2bu1BkaUpb9-8H1Kc,30357
305
- pymodaq/utils/data.py,sha256=4O43O1ljHsXhfovxSviSrRfvF45HT9wfd4xeyBZmc3o,86475
306
- pymodaq/utils/enums.py,sha256=WNU6w3tsNpP7HQnNrQ6eKnDTXulOlZufQRr11__-l0M,1822
307
+ pymodaq/utils/daq_utils.py,sha256=SM09CcBjDzuiErICLaVflF9NfaaYEv20JaK7tati7YA,26586
308
+ pymodaq/utils/data.py,sha256=XCk4oFWXvkIEloHSQruXvs27vHTnNJBZcpK8l6QYm9Y,105709
309
+ pymodaq/utils/enums.py,sha256=wpRipioUJkKcEfoaY2NrDQ2WhGxZTZiZoJty5f2Ljpc,2236
307
310
  pymodaq/utils/exceptions.py,sha256=wLO6VlofzfwWkOOWMN2B-3NEWMfpgygyeEdakIx_rAs,668
308
- pymodaq/utils/factory.py,sha256=OLPxzbgpvIuxMN9e59O768NN25FXagcLuE8juvVbhT0,2311
311
+ pymodaq/utils/factory.py,sha256=QLqAPFnTZ93eUpmAAIr7kESDk2enD57RNSuFUsjxE4E,2311
309
312
  pymodaq/utils/logger.py,sha256=JPaLBeu5NAd_5xvkzj4BRviLqXgFlu7b7B8ADfE7-L8,2604
310
- pymodaq/utils/math_utils.py,sha256=riCHwy9QRrzRbTe-ZIZftiAcE3bLKLd6PqhnggekQsM,18194
313
+ pymodaq/utils/math_utils.py,sha256=ydLPe25bQBeR0cI5QcEYgun-lXxycVD9nZLpHA-fFYo,18170
311
314
  pymodaq/utils/messenger.py,sha256=N5SPc9NomIGtK0TihQ0oq9evlxyWNYELWfpr2s8PoWw,2072
312
315
  pymodaq/utils/qvariant.py,sha256=iIBp-DDk5OVBIEqX5SwqwrJyy5t2cRgFFyfgvxQOHqM,311
313
- pymodaq/utils/slicing.py,sha256=CWAcTPsW7SW0-KBTlVIiJ3CSlRbj-LageM2NOpkGveg,2137
316
+ pymodaq/utils/slicing.py,sha256=V0HTDPYCEPeOkcZQJyA93ZfzCFlHqSb7KK36HBoS_gI,2170
314
317
  pymodaq/utils/units.py,sha256=Tj4O5qZBMBuUbjTZSH10UzSbU5z_SHVSu2VLw82tceE,3959
315
318
  pymodaq/utils/abstract/__init__.py,sha256=m7GEoQdFlnWuhwp-qlJ5S_Il6pKDyMEX8MAPlfDSxKU,1260
316
319
  pymodaq/utils/abstract/logger.py,sha256=I-t-2nSIVHHUfHJ-3IoqsuULZiIsXRe4saotaEL3-Fk,1095
@@ -319,12 +322,12 @@ pymodaq/utils/db/db_logger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
319
322
  pymodaq/utils/db/db_logger/db_logger.py,sha256=eQ8XcNiCK5fd43k7ZACBFcgMPfFLxAlSwsFmqCYkppU,10643
320
323
  pymodaq/utils/db/db_logger/db_logger_models.py,sha256=_QCA1bFneNtw7kme8WMCQj14ANHRt2ZOmWXyOuUZaZI,3459
321
324
  pymodaq/utils/gui_utils/__init__.py,sha256=tRFUKN4E4o9t-L2W7irkzzaDai32tYsl2XHqZ4Cr6Uo,403
322
- pymodaq/utils/gui_utils/custom_app.py,sha256=cmBXrM0CTEMOaqpmvRCiylBw5zVWwFDj_eRXur1VUvo,4478
323
- pymodaq/utils/gui_utils/dock.py,sha256=31gh2mgh4Uld9Zq_B-4uS3AMmpPlz0AVxzCA0KDekHI,2879
325
+ pymodaq/utils/gui_utils/custom_app.py,sha256=dOIuz0Z_fHlJQXjiKWk4l4EoHe-SaakkfZjf2Pk8_1E,4569
326
+ pymodaq/utils/gui_utils/dock.py,sha256=6AcxC9HqM45bt20vJgP6QgGAhkW8mynuOuWhL7gepwk,3854
324
327
  pymodaq/utils/gui_utils/file_io.py,sha256=r8cmvFmw2zIApVlOJqrcIFhto83OWNC5TkmFU-BSzrg,3351
325
328
  pymodaq/utils/gui_utils/layout.py,sha256=6oczLLGwwEN4EQ8yUDnz0-4Ue2wlyCRklKsVD1GNcz8,1099
326
329
  pymodaq/utils/gui_utils/list_picker.py,sha256=ddYnRTlRlgwdJSy0Q98IzYWHzIf2GS6ABl8XSS9kVXM,1190
327
- pymodaq/utils/gui_utils/utils.py,sha256=CkXpcJCniAWsDrdC8hve0-wOlbxPaERnAUNhSmqqIy4,5172
330
+ pymodaq/utils/gui_utils/utils.py,sha256=hCRM1Lg47zlyyVOPveB5X3VoEMTMtju5xdwWxaX2yG4,5497
328
331
  pymodaq/utils/gui_utils/widgets/__init__.py,sha256=LThGzmbFKbp2FtTTF_L7pHjyBzfB7F_bhMF4rPTwrUY,195
329
332
  pymodaq/utils/gui_utils/widgets/label.py,sha256=C2MU8i_Yy_oVRW7yal_ghB1Y5Bj_a9o8IFZWW3br-KM,600
330
333
  pymodaq/utils/gui_utils/widgets/lcd.py,sha256=qGtl_zUod39GmIAtGjx3_m9La9hk1QdEpHmsQAWDDVc,3294
@@ -335,28 +338,35 @@ pymodaq/utils/gui_utils/widgets/table.py,sha256=zMvjf5-HUx_sHV3Wh99HlH4LO1GLDBnS
335
338
  pymodaq/utils/gui_utils/widgets/tree_layout.py,sha256=OCXj59SzVQPi1ksxxvvbr5AIZ5mXN0_JdwcNMMR5wUg,6625
336
339
  pymodaq/utils/gui_utils/widgets/tree_toml.py,sha256=Csq1v1_sqdCEvrb4VCewfsMVMpu-cmH6K_E7UV_ae2o,4373
337
340
  pymodaq/utils/h5modules/__init__.py,sha256=x3_4ELvG9onTKEFgIt9xEGg_mA1bB07dvVbU9q0xQKw,104
338
- pymodaq/utils/h5modules/backends.py,sha256=6n_6HoeQ5gLE_e9pme-ByzN8oidtvQn04TGfk0FPxSc,33040
341
+ pymodaq/utils/h5modules/backends.py,sha256=i-3x_DtTbnYKqft9Y3V1PuinGRXZ9DVv0Mg9TNTA33Q,33269
339
342
  pymodaq/utils/h5modules/browsing.py,sha256=NQuLJHh7AsU1q3vH_Pmi_FUx3V1KR2PV7SPnWb47y7Y,23356
340
- pymodaq/utils/h5modules/data_saving.py,sha256=ymAxHOS1To71qas3J-JI0PlaVRwh2vghJZh1LcKOSLY,34301
343
+ pymodaq/utils/h5modules/data_saving.py,sha256=9wMnEZAjWvzAKrSw31ylhCQOdX9DT8hjuUciPlMs4tk,42103
341
344
  pymodaq/utils/h5modules/exporter.py,sha256=iCfUjkuGjs3-ijcUkt38NMrjO8tI9wXShvwYHJIUU70,3670
342
345
  pymodaq/utils/h5modules/h5logging.py,sha256=UhRo9YvjU5Ujw_i5aPHXOgOdw_IszxmekOa7gYUY5AQ,2492
343
346
  pymodaq/utils/h5modules/module_saving.py,sha256=r9rzHQhePS78yRZd4Sb-4vccLGNY8n_ulB0qJb6HogA,13761
344
- pymodaq/utils/h5modules/saving.py,sha256=0Cw3cgc_kfI6nWTTLjUkeUpYcA00VIgx5QkJypUwkP8,34013
347
+ pymodaq/utils/h5modules/saving.py,sha256=Hfw8gGG7AM_ZroxIOhTvfwHr4CDW9VarWw-zMkQS5TM,34036
345
348
  pymodaq/utils/h5modules/utils.py,sha256=0isF661xthXlT3hFJvXTcgGqkZcGQmSanTNAGSInez4,3368
346
349
  pymodaq/utils/h5modules/exporters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
347
350
  pymodaq/utils/h5modules/exporters/base.py,sha256=hGX2teIMO03QB0qBGTP4rzeXbZrQcVLskO0oQuGGgpE,4120
348
351
  pymodaq/utils/h5modules/exporters/flimj.py,sha256=z44C30KlAbaPmjnS5inYophnA18LwwqZOa1UMLEi4Tw,2361
349
352
  pymodaq/utils/h5modules/exporters/hyperspy.py,sha256=rheeVJQO0BAF606D_0S_j8huzOLzZfkUAp0OdJEnUz4,6517
353
+ pymodaq/utils/leco/daq_move_LECODirector.py,sha256=roAGsTCK4fZ--G3T2enRwD6i6wOuq1b7iwViuUi0noY,6382
354
+ pymodaq/utils/leco/daq_xDviewer_LECODirector.py,sha256=DsB-rLdmmA7B_Iv3cN7wetjL_ZH6FA5ZXgB_Y3y_CY0,5990
355
+ pymodaq/utils/leco/desktop.ini,sha256=2zopClaSQqdFfIsC8CGo2Oc-14x9h1gV0-fUrDtLFmA,82
356
+ pymodaq/utils/leco/director_utils.py,sha256=f_rzS6p7VxfWvgm36JRgBHphqYMZrw3gqsadgF9ZtIg,2109
357
+ pymodaq/utils/leco/leco_director.py,sha256=WPsZB6oJIkDJIqtagbeuErfpGB-ENF-s0rtoj_EGVdM,3054
358
+ pymodaq/utils/leco/pymodaq_listener.py,sha256=Nfk4iLrKaCsiEIR75h84XXMWJwp4E8g8CWgdbFV4YqQ,10699
359
+ pymodaq/utils/leco/utils.py,sha256=yzLqAaZhfALmsrU4wlNGSnRYBiivYCFm9MZvzmZodog,1394
350
360
  pymodaq/utils/managers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
351
- pymodaq/utils/managers/action_manager.py,sha256=l6p_JjEkFce1CskZzDO8be1BMslCYdS0d4U53yHBDHo,17227
361
+ pymodaq/utils/managers/action_manager.py,sha256=v99NuRq7uT_PNTAsqbUyoWyDGUzhlP6dYtdAO30_cbc,17756
352
362
  pymodaq/utils/managers/batchscan_manager.py,sha256=jcL08YvFafX5kiy03BV1_6obt2Xogiby5pvTKeN8_ho,13905
353
363
  pymodaq/utils/managers/modules_manager.py,sha256=RKpt1RU0VrELBPmTAlLB_B5k-5KX7deHnequgOFfYKk,20821
354
364
  pymodaq/utils/managers/overshoot_manager.py,sha256=fe_CR1Bkw85BER34MoVFlm-xtKl9Hr9bkf2nyaz9hXg,7158
355
- pymodaq/utils/managers/parameter_manager.py,sha256=BX_wPzx02zYgqZHl0pnGHOq3fwE__l38d6xtDQILmAQ,11426
365
+ pymodaq/utils/managers/parameter_manager.py,sha256=s06ja77XrE8C6ksVT4pf1dBpKaA2b1eB4XT2fLvdJeo,11484
356
366
  pymodaq/utils/managers/preset_manager.py,sha256=u_gssDcJ-z6oj9Wyrppt1H-FW9pbeihxA8jU00hEFpM,8205
357
367
  pymodaq/utils/managers/preset_manager_utils.py,sha256=d148YBjeNOP9FTkFoTsfdRDxMIXOR8JJHqbOmoL2aVA,8155
358
368
  pymodaq/utils/managers/remote_manager.py,sha256=H6k9aiBkuJRJbZ4rpd5jfawQ-pMRFAXOE_miakvciP8,22251
359
- pymodaq/utils/managers/roi_manager.py,sha256=GUE4oIFFooaKZ2mK6Vnw2LQxX-Sj6j6olL5ZYfelOjU,28881
369
+ pymodaq/utils/managers/roi_manager.py,sha256=j6HUd4XwNZ6UhBs4nZ_z2iU74pJiHfMzzDBmQBLi7nY,29064
360
370
  pymodaq/utils/parameter/__init__.py,sha256=fMljZeQ9EVvh2bmss550C5BpxFeKOxT8_AVJdPxQ0kQ,433
361
371
  pymodaq/utils/parameter/ioxml.py,sha256=AKOgAyaE8P2yiPIRO4d9Jiq2Bjv00jbJkbzVar-qwrg,16887
362
372
  pymodaq/utils/parameter/utils.py,sha256=2tXcfRn_96rpjxdID2vMUctWxdZ41t8G8uZXNUzEMqA,9615
@@ -379,44 +389,49 @@ pymodaq/utils/plotting/image_viewer.py,sha256=06e9NkSo5I4Q0TbOs8b98gKGlxsFYkRUr8
379
389
  pymodaq/utils/plotting/navigator.py,sha256=7X122CRnyI4B5rxsic7LN5aQFFpVPPjQ8aQHlKKMHRw,13867
380
390
  pymodaq/utils/plotting/scan_selector.py,sha256=iXNqs0ZXvTZ-kIrG-Zxo660GM6iEBif0IjQQA_zorG4,16602
381
391
  pymodaq/utils/plotting/widgets.py,sha256=aD0ebvQrJYNkkwdE43c1Judqxn9rohQ37zvt3fLSjVE,2338
382
- pymodaq/utils/plotting/data_viewers/__init__.py,sha256=qjwnWXvQ1-JhjjwpXLkNqPtnXyGbcg-ld6-7uziSfUQ,248
383
- pymodaq/utils/plotting/data_viewers/viewer.py,sha256=hVT_InJjurbYsHP49WEvU75607TjqEaXZ6Em-FaM4BQ,14334
384
- pymodaq/utils/plotting/data_viewers/viewer0D.py,sha256=YBl5Cg7eiWcke3naYiSNSJt4kohICjYVwGD-6rDY288,9028
385
- pymodaq/utils/plotting/data_viewers/viewer1D.py,sha256=aR-Qbxd1Pr28DF4kLJDp4Ph650vq2XFGRrYK8jKc--I,23296
386
- pymodaq/utils/plotting/data_viewers/viewer1Dbasic.py,sha256=sfqiuNPlsF2SbhFwVfLD7CzfKD7UUlHITb5LC1clXE0,7407
387
- pymodaq/utils/plotting/data_viewers/viewer2D.py,sha256=EnJ8NYay9iRm6dsyMtKjGX4Uqx8lSXO1Ci0j1_kpVH8,42182
392
+ pymodaq/utils/plotting/data_viewers/__init__.py,sha256=ve0IhcPpcK68xHxQ0CjcYt3d-X75WI7z3YONa45AS7U,248
393
+ pymodaq/utils/plotting/data_viewers/base.py,sha256=DnIeYACFGUswBq0OKt9g1r3nsDPsoRW44wfYuQy1osU,9637
394
+ pymodaq/utils/plotting/data_viewers/viewer.py,sha256=NjYzOdKE17BDhYJROfLkCU2vwiO1DpEsaQRMIfFyIJc,8541
395
+ pymodaq/utils/plotting/data_viewers/viewer0D.py,sha256=jFYdz_JroGpKwDLUv6gpX3-GvRQK5Det8jev_X3ItZc,11608
396
+ pymodaq/utils/plotting/data_viewers/viewer1D.py,sha256=IjU4u5ATZCqsvQMwyOQsuMZkfwpbmCmzBR39YIjZcyU,32083
397
+ pymodaq/utils/plotting/data_viewers/viewer1Dbasic.py,sha256=u91tVhmi_WIlVa8areapb0xWu0NOr5pVRLMylY_in7g,7432
398
+ pymodaq/utils/plotting/data_viewers/viewer2D.py,sha256=ivebdhJ4fR5Yv_rXZLntMojv5D_wRRqRvECBUCzDItg,46166
388
399
  pymodaq/utils/plotting/data_viewers/viewer2D_basic.py,sha256=aRLu8JVZZI8PH6Lxl8oITpHwUXaUY3PyLW6eHzkf76o,5588
389
- pymodaq/utils/plotting/data_viewers/viewerND.py,sha256=BV2cs_HWH9vaZ0JwoDo-oFNCBcAHwLiJAH9fwZTWOM8,38315
400
+ pymodaq/utils/plotting/data_viewers/viewerND.py,sha256=NrEPrFcE-UxuC95l5W258YqrP58-4WvTg2H80wfucaA,38531
390
401
  pymodaq/utils/plotting/items/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
391
402
  pymodaq/utils/plotting/items/axis_scaled.py,sha256=YVSqpSs2gfALdsH_wKheYf6fgEQ0-7tU2zWu709K3h4,3245
392
- pymodaq/utils/plotting/items/crosshair.py,sha256=hVoM3dDtRmYGfzZJsP-Yhyfnx2HV1g-nLSQMVl6ZZXY,3064
393
- pymodaq/utils/plotting/items/image.py,sha256=Si2nsHE-3RyN247E2MjNJPU7YQgUQpDwSFmBAyFIZVQ,14600
403
+ pymodaq/utils/plotting/items/crosshair.py,sha256=UmCYjoiqlcrbkyZyVFNXumvhl1N9bagrjDffAYfJNQ8,3092
404
+ pymodaq/utils/plotting/items/image.py,sha256=rhOYEQI03lMg6cCSqfaCwWTRY4luwn3SmmAKElA8rjA,14642
405
+ pymodaq/utils/plotting/plotter/plotter.py,sha256=A-AzE9rN_PkYwuhOuk7_7IbGOCPUVA3OqTV9aOpdWDs,2986
406
+ pymodaq/utils/plotting/plotter/plotters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
407
+ pymodaq/utils/plotting/plotter/plotters/matplotlib_plotters.py,sha256=s8Nf7_N4RbMt8ErIn1dbi0SzAk6Fb0VciJD0ESUuYiw,5121
408
+ pymodaq/utils/plotting/plotter/plotters/qt_plotters.py,sha256=E33lRZDUxSCWlpV-J9uerVQ5bn2CE3IdoJVkUiYTQVk,2734
394
409
  pymodaq/utils/plotting/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
395
- pymodaq/utils/plotting/utils/axes_viewer.py,sha256=FcJ_lWZ0h8hEfFkuGVjbNkF3cXOrUcvUO_HrN1d7ru4,2939
396
- pymodaq/utils/plotting/utils/filter.py,sha256=FO_18jOUwkPS17jZt-1B5bDsnv-6X7StKcplDjL3rBY,21030
397
- pymodaq/utils/plotting/utils/lineout.py,sha256=ihYj5P-XMfAtvm0lGLie6nv7onf3CuDU0XBWilId_6k,7945
398
- pymodaq/utils/plotting/utils/plot_utils.py,sha256=b7a4spEN0lQfUzv5t390ApIe8TqIdXhd3IdYEkX1KrM,17131
410
+ pymodaq/utils/plotting/utils/axes_viewer.py,sha256=sOfnqz4dyz46SjxO9rmYa7eXmRVq9fLejDawc1MEvKU,2945
411
+ pymodaq/utils/plotting/utils/filter.py,sha256=-rS3nUHcbzDXT4l8RfR-iziiMfqwRx_75faXo6g38p4,23175
412
+ pymodaq/utils/plotting/utils/lineout.py,sha256=botUZPLMuXXA8jhA_N2rsQ-w7jRtSAW6PBu7gPV1kcI,8067
413
+ pymodaq/utils/plotting/utils/plot_utils.py,sha256=L7dIOjTlRjtoUEbX4_8d0HFPw45mP3jHkqp3oldShMY,19807
399
414
  pymodaq/utils/plotting/utils/signalND.py,sha256=pprtf7aOwb6235VVicJCojJJAkBk92X9GPvqgq4gveg,44892
400
- pymodaq/utils/scanner/__init__.py,sha256=pX3w9Nj0VpqBqwE_sBbrAJLRYpdMtr21Llkje3g3uYk,229
401
- pymodaq/utils/scanner/scan_config.py,sha256=mRAhHrkulXcO05IjmalTxmUPTGkH_sHJQu6Ioj_SOPw,760
402
- pymodaq/utils/scanner/scan_factory.py,sha256=tKYY72xdVpc73fOhAUzkQ8NbKAtnNnW2C3C_qrCm_HE,9601
403
- pymodaq/utils/scanner/scanner.py,sha256=OrKQa0g_R5ZHW7xVpLAEw5v1Ju9RUayfvDK5xmRPOPU,10843
415
+ pymodaq/utils/scanner/__init__.py,sha256=LqY1QwGnJEgr8CcW8uLWzbWy55Nvkmjmww4nl7xMpYU,171
416
+ pymodaq/utils/scanner/scan_config.py,sha256=6U02rWMM5XrW5EnyzYqrA7A68PqqYbqZrYyXVEuckZs,344
417
+ pymodaq/utils/scanner/scan_factory.py,sha256=ZNO3a-tooBCsy-uKlh1movyffAnXKCJ647yk2DaxboA,8637
418
+ pymodaq/utils/scanner/scanner.py,sha256=f5TZHTqSC6_uY8LrbR7WOOSCNC8-Yg3NSp1n5f5PBYk,10909
404
419
  pymodaq/utils/scanner/utils.py,sha256=xHQaNvWwVLnQvI8fVbLqMO1M6XOJjV5n39e3f7v8Zjc,3682
405
- pymodaq/utils/scanner/scanners/_1d_scanners.py,sha256=rmqyHCSCD5HynuFELlzRd7URliz1rlwBcGA6TK1uceM,7694
406
- pymodaq/utils/scanner/scanners/_2d_scanners.py,sha256=-25DBTJrO7k7REREGH5i-6DbVRApc76B3OaJeeJTC1M,15560
420
+ pymodaq/utils/scanner/scanners/_1d_scanners.py,sha256=DoZ-N_vs46mkjnKDlQUttqSUwEcef7aUB9l7qzLmNcA,7811
421
+ pymodaq/utils/scanner/scanners/_2d_scanners.py,sha256=5EtSR8ml5POfcfCSSnANNwi8VmSPCYHTm2pjBcw_F0c,13853
407
422
  pymodaq/utils/scanner/scanners/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
408
- pymodaq/utils/scanner/scanners/sequential.py,sha256=7hcjg0csoA-umV3hd51AdiD0THZjcI2JorMzhS81BO4,7842
409
- pymodaq/utils/scanner/scanners/tabular.py,sha256=zAtAMBolDZnV_HC2toBicgF51eX6J85hJSuX_tXqiNQ,12583
423
+ pymodaq/utils/scanner/scanners/sequential.py,sha256=WJNPCkZf0bBI9slOIkUGw-ZPPAbri-R74A6KXmLrDFI,8065
424
+ pymodaq/utils/scanner/scanners/tabular.py,sha256=KTO2Nbr7iHEqUPN3eJiFExyBOQA94CGeDGzgl1ork_U,12812
410
425
  pymodaq/utils/svg/__init__.py,sha256=QWpeotkNhAQkoVTdWBH8t6MRr9-lrPJx4bXn7J6fCNA,81
411
426
  pymodaq/utils/svg/svg_renderer.py,sha256=USEcrOWmQAq8UM620e_XIGPI6z9IQmhyJuqbPo3jLzE,406
412
427
  pymodaq/utils/svg/svg_view.py,sha256=bmXpDqnw9S-Bp3F8Hi_oeYB5Y9gebiCNsQWVJzCq-PA,901
413
428
  pymodaq/utils/svg/svg_viewer2D.py,sha256=LTJ3Ulb5zWXdRPr7vqcWumbpq7ZctzrYUMtD5QV3x60,1523
414
429
  pymodaq/utils/tcp_ip/__init__.py,sha256=1e_EK0AgvdoLAD_CSGGEaITZdy6OWCO7ih9IAIp7HT4,81
415
430
  pymodaq/utils/tcp_ip/mysocket.py,sha256=StAWj8dzHeMnbLj68Sel81uWFy-YkKVNRnVf7gXrESI,3452
416
- pymodaq/utils/tcp_ip/serializer.py,sha256=YyVjOyuOLDdRTH7YMUlSXrmuuY0e8km-6KeZrAj7HA8,24932
417
- pymodaq/utils/tcp_ip/tcp_server_client.py,sha256=eZswNZWKyL6ZFHuSROf3nL53fVgDNXMV1PMK5lJNS1o,30490
418
- pymodaq-4.1.5.dist-info/METADATA,sha256=nzGDyQCkSB9jucMdNc36yP27EmHLBwEkO5TMqoUDXJI,7583
419
- pymodaq-4.1.5.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
420
- pymodaq-4.1.5.dist-info/entry_points.txt,sha256=RAzdYNjvUT28I2eiCKki_g2NzXq0woWxhev6lwzwRv8,348
421
- pymodaq-4.1.5.dist-info/licenses/LICENSE,sha256=VKOejxexXAe3XwfhAhcFGqeXQ12irxVHdeAojZwFEI8,1108
422
- pymodaq-4.1.5.dist-info/RECORD,,
431
+ pymodaq/utils/tcp_ip/serializer.py,sha256=HJziYyR_duhGBt8QikmqET8OH1uI5OAFgQu4w4jCQt4,25776
432
+ pymodaq/utils/tcp_ip/tcp_server_client.py,sha256=xIMTNgVW_rKK0yTi4FDNFLf85-Akb27Jz2LdrvOrP68,30660
433
+ pymodaq-4.2.0.dist-info/METADATA,sha256=WW0JK_Va2orRXPH-p-LvzAdttZXJAyCvzJ1Lu5ADCB0,7665
434
+ pymodaq-4.2.0.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
435
+ pymodaq-4.2.0.dist-info/entry_points.txt,sha256=RAzdYNjvUT28I2eiCKki_g2NzXq0woWxhev6lwzwRv8,348
436
+ pymodaq-4.2.0.dist-info/licenses/LICENSE,sha256=VKOejxexXAe3XwfhAhcFGqeXQ12irxVHdeAojZwFEI8,1108
437
+ pymodaq-4.2.0.dist-info/RECORD,,
@@ -1,42 +0,0 @@
1
-
2
- [Scan1D.Linear]
3
- start = 1.0
4
- stop = 2.0
5
- step = 0.01
6
-
7
- [Scan1D.Random]
8
- start = 1.0
9
- stop = 2.0
10
- step = 0.01
11
-
12
- [Scan1D.Sparse]
13
- parsed_string = '0:0.1:1'
14
-
15
- [Scan2D.Spiral]
16
- center_axis1 = -5
17
- center_axis2 = 5
18
- rmax_axis1 = 10
19
- rmax_axis2 = 5
20
- npts_by_axis = 10
21
-
22
- [Scan2D.Linear]
23
- start_axis1 = -5
24
- start_axis2 = -5
25
- stop_axis1 = 5
26
- stop_axis2 = 5
27
- step_axis1 = 0.5
28
- step_axis2 = 0.5
29
-
30
- [Scan2D.LinearBackForce]
31
- start_axis1 = -5
32
- start_axis2 = -5
33
- stop_axis1 = 5
34
- stop_axis2 = 5
35
- step_axis1 = 0.5
36
- step_axis2 = 0.5
37
-
38
- [Scan2D.Adaptive]
39
- start_axis1 = -5
40
- start_axis2 = -5
41
- stop_axis1 = 5
42
- stop_axis2 = 5