quarchpy 2.1.17.dev1__py2.py3-none-any.whl → 2.1.18.dev1__py2.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.
Files changed (47) hide show
  1. quarchpy/.idea/workspace.xml +41 -41
  2. quarchpy/__pycache__/_version.cpython-311.pyc +0 -0
  3. quarchpy/__pycache__/run.cpython-311.pyc +0 -0
  4. quarchpy/_version.py +1 -1
  5. quarchpy/connection_specific/__pycache__/connection_QPS.cpython-311.pyc +0 -0
  6. quarchpy/connection_specific/__pycache__/connection_ReST.cpython-311.pyc +0 -0
  7. quarchpy/connection_specific/connection_mDNS.py +4 -7
  8. quarchpy/connection_specific/connection_mDNS.py.bak +48 -0
  9. quarchpy/debug/SystemTest.py +6 -1
  10. quarchpy/debug/SystemTest.py.bak +188 -0
  11. quarchpy/debug/__pycache__/SystemTest.cpython-311.pyc +0 -0
  12. quarchpy/debug/__pycache__/module_debug.cpython-311.pyc +0 -0
  13. quarchpy/device/__pycache__/scanDevices.cpython-311.pyc +0 -0
  14. quarchpy/device/scanDevices.py +10 -25
  15. quarchpy/device/scanDevices.py.bak +645 -0
  16. quarchpy/docs/CHANGES.rst +14 -0
  17. quarchpy/docs/_build/doctrees/CHANGES.doctree +0 -0
  18. quarchpy/docs/_build/doctrees/environment.pickle +0 -0
  19. quarchpy/docs/_build/doctrees/source/changelog.doctree +0 -0
  20. quarchpy/docs/_build/doctrees/source/quarchpy.fio.doctree +0 -0
  21. quarchpy/docs/_build/doctrees/source/quarchpy.qis.doctree +0 -0
  22. quarchpy/docs/_build/doctrees/source/quarchpy.qps.doctree +0 -0
  23. quarchpy/docs/_build/html/CHANGES.html +121 -101
  24. quarchpy/docs/_build/html/_sources/CHANGES.rst.txt +14 -0
  25. quarchpy/docs/_build/html/genindex.html +27 -2
  26. quarchpy/docs/_build/html/index.html +54 -51
  27. quarchpy/docs/_build/html/objects.inv +0 -0
  28. quarchpy/docs/_build/html/py-modindex.html +5 -0
  29. quarchpy/docs/_build/html/searchindex.js +1 -1
  30. quarchpy/docs/_build/html/source/changelog.html +175 -152
  31. quarchpy/docs/_build/html/source/modules.html +1 -1
  32. quarchpy/docs/_build/html/source/quarchpy.fio.html +28 -2
  33. quarchpy/docs/_build/html/source/quarchpy.html +12 -1
  34. quarchpy/docs/_build/html/source/quarchpy.qis.html +12 -0
  35. quarchpy/docs/_build/html/source/quarchpy.qps.html +14 -2
  36. quarchpy/fio/__pycache__/FIO_interface.cpython-311.pyc +0 -0
  37. quarchpy/qis/__pycache__/qisFuncs.cpython-311.pyc +0 -0
  38. quarchpy/qis/qisFuncs.py +58 -12
  39. quarchpy/qps/__pycache__/qpsFuncs.cpython-311.pyc +0 -0
  40. quarchpy/qps/qpsFuncs.py +61 -20
  41. quarchpy/qps/qpsFuncs.py.bak +66 -18
  42. quarchpy/run.py +0 -1
  43. quarchpy/run.py.bak +283 -0
  44. {quarchpy-2.1.17.dev1.dist-info → quarchpy-2.1.18.dev1.dist-info}/METADATA +18 -1
  45. {quarchpy-2.1.17.dev1.dist-info → quarchpy-2.1.18.dev1.dist-info}/RECORD +47 -43
  46. {quarchpy-2.1.17.dev1.dist-info → quarchpy-2.1.18.dev1.dist-info}/WHEEL +0 -0
  47. {quarchpy-2.1.17.dev1.dist-info → quarchpy-2.1.18.dev1.dist-info}/top_level.txt +0 -0
quarchpy/run.py.bak ADDED
@@ -0,0 +1,283 @@
1
+ """
2
+ This module allows specific quarchpy utilities and embedded applications to be run from the command line
3
+ using the format:
4
+ > python -m quarchpy.run [option]
5
+ """
6
+
7
+ # Import the various functions which need to be called from the command line options
8
+ from quarchpy.debug.SystemTest import main as systemTestMain
9
+ from quarchpy.debug.module_debug import parse_arguments as moduleDebugMain
10
+ from quarchpy.qis.qisFuncs import startLocalQis, isQisRunning, closeQis as closeQIS
11
+ from quarchpy.qps.qpsFuncs import startLocalQps, isQpsRunning, closeQps as closeQPS
12
+ from quarchpy.debug.upgrade_quarchpy import main as uprade_quarchpy_main
13
+ from quarchpy.user_interface import*
14
+ from quarchpy.debug.simple_terminal import main as simple_terminal_main
15
+ import sys, logging, traceback
16
+
17
+ def main(args):
18
+ """
19
+ Main function parses the arguments from the run command only
20
+ """
21
+
22
+ # Run the internal parser
23
+ _parse_run_options(args)
24
+
25
+ def _parse_run_options(args):
26
+ """
27
+ Parses the command line argument supplied via the quarchpy.run command line option
28
+
29
+ Parameters
30
+ ----------
31
+ args : list[str]
32
+ List of arguments to process
33
+
34
+ """
35
+
36
+ found = False
37
+
38
+ # Arguments may not always be present
39
+ if (len(args) > 0):
40
+ # Obtain the list of commands that can be executed
41
+ run_options = _get_run_options()
42
+ # Try to locate a matching command name, executing it if found and passing in the remaining parameters
43
+ main_arg = args[0]
44
+ for item in run_options:
45
+ if (item[0] == main_arg or item[1] == main_arg):
46
+ found = True
47
+ item[2](args[1:])
48
+ else:
49
+ logging.info("No args passed")
50
+ found = True
51
+ _run_help_function()
52
+
53
+ # If parsing failed, error and print the available commands
54
+ if (found == False):
55
+ logging.error("ERROR - Command line argument not recognised")
56
+ _run_help_function()
57
+
58
+
59
+ def _get_run_options():
60
+ """
61
+ Gets the list of options for quarchpy.run commands which can be called. This is used internally to access the available commands
62
+
63
+ Returns
64
+ -------
65
+ options_list : list[list[object]]
66
+ List of call parameters, each of which is a list of objects making up the function description
67
+
68
+ """
69
+
70
+ run_options = []
71
+
72
+ # [old_name , simple_name , execute_function , help_description]
73
+ run_options.append (["debug_info" , "debug" , _run_debug_function , "Runs system tests which displays useful information for debugging"])
74
+ run_options.append ([None , "module_debug", _run_module_debug_function , "Gives debug info on selected module and DUT"])
75
+ run_options.append ([None , "qcs" , _run_qcs_function , "Launches Quarch Compliance Suite server"])
76
+ run_options.append (["calibration_tool" , "calibration" , _run_calibration_function , "Runs the Quarch power module calibration tool"])
77
+ run_options.append ([None , "qis" , _run_qis_function , "Launches Quarch Instrument Server for communication with Quarch power modules"])
78
+ run_options.append ([None , "qps" , _run_qps_function , "Launches Quarch Power Studios, for power capture and analysis"])
79
+ run_options.append (["simple_terminal" , "terminal" , _run_simple_terminal_function, "Runs the Simple Terminal script"])
80
+ run_options.append (["upgrade_quarchpy" , "upgrade" , _run_upgrade_function , "Detects if an update of Quarchpy is available and assists in the upgrade process"])
81
+ run_options.append (["h" , "help" , _run_help_function , "Displays the help screen with a list of commands supported"])
82
+ run_options.append (["dd" , "list_drives" , _run_show_drives_function , "Displays a list of shown drives on the current system"])
83
+
84
+ return run_options
85
+
86
+ def _run_simple_terminal_function(args=None):
87
+ """
88
+ Runs the Simple Terminal script
89
+
90
+ Parameters
91
+ ----------
92
+ None
93
+ """
94
+ simple_terminal_main()
95
+
96
+ def _run_debug_function(args=None):
97
+ """
98
+ Executes the python debug/system test option, returning details of the installation to the user
99
+ for debug purposes
100
+
101
+ Parameters
102
+ ----------
103
+ args : list[str]
104
+ List of sub arguments to process
105
+
106
+ """
107
+
108
+ systemTestMain(args)
109
+
110
+ def _run_module_debug_function(args=None):
111
+ """
112
+ Executes the python debug/system test option, returning details of the installation to the user
113
+ for debug purposes
114
+
115
+ Parameters
116
+ ----------
117
+ args : list[str]
118
+ List of sub arguments to process
119
+
120
+ """
121
+
122
+ moduleDebugMain(args)
123
+
124
+ def _run_show_drives_function(args=None):
125
+ """
126
+ Shows a list of current found drives to the user.
127
+
128
+ Parameters
129
+ ----------
130
+ args : list[str]
131
+ List of sub arguments to process
132
+
133
+ """
134
+
135
+ try:
136
+ import QuarchpyQCS
137
+ from QuarchpyQCS.hostInformation import HostInformation
138
+ host_info = HostInformation()
139
+ host_info.display_drives()
140
+ except ImportError as err:
141
+ logging.error(err)
142
+ logging.error("Drive detection is now in the QCS standalone package. Please install the QCS package via:")
143
+ logging.error("'Pip install quarchQCS'")
144
+ logging.error("Then retry this command")
145
+
146
+ def _run_qcs_function(args=None):
147
+ """
148
+ Executes the QCS server back end process
149
+
150
+ Parameters
151
+ ----------
152
+ args : list[str]
153
+ List of sub arguments to process
154
+
155
+ """
156
+
157
+ try:
158
+ import QuarchpyQCS
159
+ # from QuarchpyQCS.driveTestCore import main as driveTestCoreMain
160
+ from QuarchpyQCS.driveTestCore import main as driveTestCoreMain
161
+ driveTestCoreMain(args)
162
+ except ImportError as err:
163
+ logging.error(err)
164
+ logging.error("QCS is now a standalone package. Please install the QCS package via:")
165
+ logging.error("'Pip install quarchQCS'")
166
+ logging.error("Then retry this command")
167
+
168
+
169
+ def _run_qis_function(args=None):
170
+ """
171
+ Executes Quarch Instrumentation Server
172
+
173
+ Parameters
174
+ ----------
175
+ args : list[str]
176
+ List of sub arguments to process
177
+
178
+ """
179
+ shutdown = False
180
+ if args != None:
181
+ for arg in args:
182
+ if "-shutdown" in arg:
183
+ shutdown = True
184
+ if isQisRunning() == True:
185
+ printText("Closing QIS")
186
+ closeQIS()
187
+ break
188
+ else:
189
+ printText("QIS is not running")
190
+
191
+ if shutdown is False:
192
+ startLocalQis(args=args)
193
+
194
+
195
+ def _run_qps_function(args=None):
196
+ """
197
+ Executes Quarch Power Studio
198
+
199
+ Parameters
200
+ ----------
201
+ args : list[str]
202
+ List of sub arguments to process
203
+
204
+ """
205
+ shutdown = False
206
+ if args != None:
207
+ for arg in args:
208
+ if "-shutdown" in arg:
209
+ shutdown = True
210
+ if isQpsRunning() == True:
211
+ printText("Closing QPS")
212
+ closeQPS()
213
+ break
214
+ else:
215
+ printText("QPS is not running")
216
+
217
+ if shutdown is False:
218
+ startLocalQps(args=args)
219
+
220
+
221
+ def _run_calibration_function(args=None):
222
+ """
223
+ Executes the calibration utility for power modules
224
+
225
+ Parameters
226
+ ----------
227
+ args : list[str]
228
+ List of sub arguments to process
229
+
230
+ """
231
+ try:
232
+ from quarchCalibration.calibrationUtil import main as calibrationUtilMain
233
+ retVal = calibrationUtilMain(args)
234
+ return retVal
235
+ except ImportError as err:
236
+ #TODO check err for a more specific "quarchCalibration" cannot be found rather than a generic import error
237
+
238
+ logging.error("Quarch Calibration is now in the quarchCalibration package. Please install the quarchCalibration package via:")
239
+ logging.error("'pip install quarchCalibration'")
240
+ logging.error("Then retry this command")
241
+ traceback.print_exc()
242
+
243
+
244
+
245
+
246
+ def _run_upgrade_function(args=None):
247
+ """
248
+ Checks for updates to quarchpy and runs the update process if required
249
+
250
+ Parameters
251
+ ----------
252
+ args : list[str]
253
+ List of sub arguments to process
254
+
255
+ """
256
+
257
+ uprade_quarchpy_main(args)
258
+
259
+
260
+ def _run_help_function(args=None):
261
+ """
262
+ Shows the quarchpy.run help screen
263
+
264
+ Parameters
265
+ ----------
266
+ args : list[str]
267
+ List of sub arguments to process
268
+
269
+ """
270
+
271
+ printText("quarchpy.run -[Command]")
272
+ # Iterate through all of the possible commands and print a nice help string for each
273
+ run_options = _get_run_options()
274
+ display_options = []
275
+ for item in run_options:
276
+ short_name = item[1]
277
+ description = item[3]
278
+ display_options.append([short_name,description])
279
+ displayTable(display_options, align="l", tableHeaders=["Command", "Description"])
280
+
281
+ if __name__ == "__main__":
282
+ main (["qps"])
283
+ main (sys.argv[1:])
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: quarchpy
3
- Version: 2.1.17.dev1
3
+ Version: 2.1.18.dev1
4
4
  Summary: This packpage offers Python support for Quarch Technology modules.
5
5
  Author: Quarch Technology ltd
6
6
  Author-email: support@quarch.com
@@ -17,6 +17,9 @@ Classifier: Topic :: Scientific/Engineering :: Information Analysis
17
17
  Classifier: Topic :: System
18
18
  Classifier: Topic :: System :: Power (UPS)
19
19
  Description-Content-Type: text/x-rst
20
+ Requires-Dist: zeroconf (>=0.23.0)
21
+ Requires-Dist: numpy
22
+ Requires-Dist: pandas
20
23
 
21
24
  ====================
22
25
  Changelog (Quarchpy)
@@ -33,6 +36,20 @@ Quarchpy
33
36
  Change Log
34
37
  ----------
35
38
 
39
+ 2.1.17
40
+ ------
41
+ - Improved QIS QPS launching on Linux sytems
42
+ - System debug for linux systems
43
+
44
+ 2.1.16
45
+ ------
46
+ - FIO mb/s parsing
47
+ - Improved QIS QPS launching
48
+
49
+ 2.1.15
50
+ ------
51
+ - minor bug fix
52
+
36
53
  2.1.14
37
54
  ------
38
55
  - minor bug fixes and logging improvements.
@@ -2,21 +2,22 @@ quarchpy/LICENSE.rst,sha256=SmYK6o5Xs2xRaUwYT-HqNDRu9eygu6y9QwweXNttiRc,3690
2
2
  quarchpy/QuarchPy Function Listing.xlsx,sha256=NE68cZPn7b9P3wcnCsnQr3H6yBkt6D5S6dH6457X520,31245
3
3
  quarchpy/README.txt,sha256=-LbrJ5rCPGSxoBmvr9CxJVokQUDwZSjoHa43eN8bWck,980
4
4
  quarchpy/__init__.py,sha256=NQsPKeV7AkmRNKqRsVRXBhzzx0TV0eE3GnmofJEwpTg,3002
5
- quarchpy/_version.py,sha256=tuEDeZYi3y1RDJiBMwzGr3phhnh_BXK_unIJEjQb4oc,27
5
+ quarchpy/_version.py,sha256=_gLaKAfBh6aaLUrPzx_UDxLzEB58z5reM9CzOhYrr1E,27
6
6
  quarchpy/_version.py.bak,sha256=wlespBr6ZGOdzd_SuVQowYtPLb4t38iI60XnX9UC0nI,27
7
7
  quarchpy/connection.py,sha256=9lPIUP4LCWkFAedc8CWorDY-3ujdAA-cyeNkSBdIv9E,2226
8
- quarchpy/run.py,sha256=iuxiYT-O8Aky5zVwLs0GDbLI9XrdYpGMvXyW6osfh5Q,9258
8
+ quarchpy/run.py,sha256=w4w8dC_aeYJ8TGfgTrW6_J3apmONTtlBj5hiPk0x0zE,9238
9
+ quarchpy/run.py.bak,sha256=iuxiYT-O8Aky5zVwLs0GDbLI9XrdYpGMvXyW6osfh5Q,9258
9
10
  quarchpy/.idea/.gitignore,sha256=4uN-1gxQ2OQcQqqfNQVkKl8WieZ_trx_6KBtqwmg-pY,50
10
11
  quarchpy/.idea/.name,sha256=ztkjgRwL9Uud1OEi36hGQeDGk3OLK1NfDEO8YqGYy8o,11
11
12
  quarchpy/.idea/misc.xml,sha256=njbmweQkO94aRIK_Z8dZDifybOXO9VrC_K3UDiYEiTE,189
12
13
  quarchpy/.idea/modules.xml,sha256=5mW4Vmuruv_eYCU66c9a7MI4reCOvPAd1uJvOIwg4tw,465
13
14
  quarchpy/.idea/quarchpy.iml,sha256=Vi1mSGih6uG-c9EaHjGZvazvJ_-ZwJwM1z7hacxvFSA,622
14
- quarchpy/.idea/workspace.xml,sha256=l8gdGN6588ovjIFLgcRMqY16Dotpf_Q9AMZ9jZL5y3w,14279
15
+ quarchpy/.idea/workspace.xml,sha256=VX99XGqmvA66ugzTSAy_xPOUt55noQBWZ2dw_5l1k1U,14515
15
16
  quarchpy/.idea/inspectionProfiles/profiles_settings.xml,sha256=YXLFmX7rPNGcnKK1uX1uKYPN0fpgskYNe7t0BV7cqkY,174
16
17
  quarchpy/__pycache__/__init__.cpython-311.pyc,sha256=LNXzo3JhzqdjOYXK2y_e4yrN5ixVBLJ1vc8Rv2YAXWk,4954
17
- quarchpy/__pycache__/_version.cpython-311.pyc,sha256=YKg_DDS1fbRMIlVtNnf308O1ciWqod3XV8hhiwPE6h0,193
18
+ quarchpy/__pycache__/_version.cpython-311.pyc,sha256=QKf3w9j_1y7uvMiKm2T-ECWHmKKBPBRW97shrmoWYXg,193
18
19
  quarchpy/__pycache__/connection.cpython-311.pyc,sha256=9myBs7RvuFjfBtRz7TcNs13sgfXfrhwsbmocHEwcWoY,3647
19
- quarchpy/__pycache__/run.cpython-311.pyc,sha256=niPoZDmciQKzrke_OV6WfopkpxudNNqD9Va2zFM9xkI,11053
20
+ quarchpy/__pycache__/run.cpython-311.pyc,sha256=hwEwY76193gqA8v_fSMH9fmdo-8Yo1AYDpSf3R1U6pg,11053
20
21
  quarchpy/config_files/__init__.py,sha256=bP9FM5hjP0r7s8qmWqcsVjAfHM0B4XY7cz5sTpe2HDA,290
21
22
  quarchpy/config_files/quarch_config_parser.py,sha256=mjP-uO58hVlHm25ZAFjX9Zwhn8z0np4vveLNHtx8Bt4,28891
22
23
  quarchpy/config_files/Cable_Modules/QTL1253-01 - Mini SAS Module Config v3.5 c1.3.qfg,sha256=hJnFfjsqiNZXYWHx2kn43Gnr2xqmJth4GGVd8VKU5_k,4923
@@ -240,7 +241,8 @@ quarchpy/connection_specific/connection_Serial.py,sha256=j0KTxOX7c5rmu09s68sqOzH
240
241
  quarchpy/connection_specific/connection_TCP.py,sha256=hkKJC9QkopBaaWnWB9xz9LRlvcvGAwvz9w3RxRDXfgc,2427
241
242
  quarchpy/connection_specific/connection_Telnet.py,sha256=e5R6NIbyOJOhiRUtBg0S1tY4VGJXrFPhrJcfM9mJD2c,676
242
243
  quarchpy/connection_specific/connection_USB.py,sha256=zReNq-pFjcZN83pp8zE7XsCmM6KrVujVG1v2CdYb5oQ,26156
243
- quarchpy/connection_specific/connection_mDNS.py,sha256=Ui6pshFWCku7UV8GcsAabBJs0moBelvUDmcsX8aPiYo,1962
244
+ quarchpy/connection_specific/connection_mDNS.py,sha256=3Z_bAfecBa4rVh2KgYnuJlODdlVTffo5CKj9W1Ccr0w,1834
245
+ quarchpy/connection_specific/connection_mDNS.py.bak,sha256=OlTNPCJ3irp4aPKE2H_vY_Z6ro74ogrL-woyW1zaEgY,2099
244
246
  quarchpy/connection_specific/QPS/Power-Studio-QuickStart.pdf,sha256=8ihSKl-8F7Bc_ndVd0cyN3RhkvXeKTK-tXA-xITiTr0,226994
245
247
  quarchpy/connection_specific/QPS/QuarchPowerStudio.properties.xml,sha256=o1SpNKFyGQ0oZBnn5vTnEF9ORSMSOI422yTMxoTRWhA,28486
246
248
  quarchpy/connection_specific/QPS/commandLineOptions.txt,sha256=dhLmE966icLLmjj25nSDMGJxKWldhNplx0DBUFxcrWg,661
@@ -310,8 +312,8 @@ quarchpy/connection_specific/QPS/qps_lib/txw2-3.0.0.jar,sha256=yf6NbU7Qjf9D8hc_1
310
312
  quarchpy/connection_specific/__pycache__/StreamChannels.cpython-311.pyc,sha256=atvpZSSTkDWvY15L11TVprWg7aSvYxTcr6v1OnR2WGc,1970
311
313
  quarchpy/connection_specific/__pycache__/__init__.cpython-311.pyc,sha256=RX16TjbnvJWSsmVZ_NJImvH8BaEs0djq1QC3LzxreCg,192
312
314
  quarchpy/connection_specific/__pycache__/connection_QIS.cpython-311.pyc,sha256=J1_ArXY9hxFtBub_KZZTW9FTnH9zTM0b6Pssphv-jH8,82172
313
- quarchpy/connection_specific/__pycache__/connection_QPS.cpython-311.pyc,sha256=Nd9a2X0FWKWQcIwnB3fKGf9LpTE16NdGXj1V-XQN40E,8050
314
- quarchpy/connection_specific/__pycache__/connection_ReST.cpython-311.pyc,sha256=CsdQ8EmruVwY-l_APyRwxS_hpc54TI9qSZpsZ8QNNwM,2817
315
+ quarchpy/connection_specific/__pycache__/connection_QPS.cpython-311.pyc,sha256=JsQbfi_B1qyB5EwCOxjZo_CQznl-_MpIrovOBsnz9sc,8179
316
+ quarchpy/connection_specific/__pycache__/connection_ReST.cpython-311.pyc,sha256=yjB_wo4WVFzkCBKy7XBTEzJjaYh-j3le_PDe_FAw07Y,2876
315
317
  quarchpy/connection_specific/__pycache__/connection_Serial.cpython-311.pyc,sha256=YSUqiPpm67U5JLQumh1CpR5utFnhecVLPBmRK7jc7Lk,2863
316
318
  quarchpy/connection_specific/__pycache__/connection_TCP.cpython-311.pyc,sha256=zJ36y7afp1HvbsFODLlZQaF8OppiKb6kZ0WOMDcqCfs,3024
317
319
  quarchpy/connection_specific/__pycache__/connection_Telnet.cpython-311.pyc,sha256=9vATRxjt3oA4iOCeCerNwreXbOESBnwCnybg6j3c1CI,1881
@@ -358,16 +360,17 @@ quarchpy/connection_specific/usb_libs/MS32/__init__.py,sha256=47DEQpj8HBSa-_TImW
358
360
  quarchpy/connection_specific/usb_libs/MS32/libusb-1.0.dll,sha256=I-lcEsC7bWOoTGACmNzenKnKlZxeOXv_fs4O2UqDwuo,97280
359
361
  quarchpy/connection_specific/usb_libs/MS64/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
360
362
  quarchpy/connection_specific/usb_libs/MS64/libusb-1.0.dll,sha256=kkMfbwPZWak7xgeZH4IYcxc6xXd764fgqQF5T_9z8yg,116224
361
- quarchpy/debug/SystemTest.py,sha256=qwB_Wi-VfPRUn0UJZWlSdqPAOwDO5ZAlACEKqJfrzTE,6391
363
+ quarchpy/debug/SystemTest.py,sha256=zFjqfQyBnFT6s1oRzeXVQ_meWhVOIDNG0lP9lLQy5M0,6530
364
+ quarchpy/debug/SystemTest.py.bak,sha256=qwB_Wi-VfPRUn0UJZWlSdqPAOwDO5ZAlACEKqJfrzTE,6391
362
365
  quarchpy/debug/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
363
366
  quarchpy/debug/__main__.py,sha256=-7ofWPl6ihnVHs1xWyYzpIwzc2-qpW9GhUYV09_xl-k,48
364
367
  quarchpy/debug/module_debug.py,sha256=_ZXaoy8q2BrhsPmJYNHa9dvmWpMMfxmaMOdOS51tyIY,9250
365
368
  quarchpy/debug/simple_terminal.py,sha256=DyYLZCFPBuboGNa5E4qH_B2L8si-jk9tNLnRHxIJyBA,1636
366
369
  quarchpy/debug/upgrade_quarchpy.py,sha256=NXD8TH5L0Krk4Rby7RxZ_w05LOBop7JlJsuVuDADKYE,4298
367
370
  quarchpy/debug/versionCompare.py,sha256=AkJxHKd6hsnXnWr-Pmo3tc2sekL9uKOvGhYksM1dgp0,2397
368
- quarchpy/debug/__pycache__/SystemTest.cpython-311.pyc,sha256=eAQN_HWJ72gBt1hn-lVrm0I9_hLQe-TFVTMx1DhFLmk,10149
371
+ quarchpy/debug/__pycache__/SystemTest.cpython-311.pyc,sha256=dP3R426caYxKdFsDLKGc4S_K-nNwyEYDnHg1wU19w6E,10426
369
372
  quarchpy/debug/__pycache__/__init__.cpython-311.pyc,sha256=JhJ3ZUW0-BGlFb2ZaVUSrOCnGSXoxs0dnzZWZsy7Tys,178
370
- quarchpy/debug/__pycache__/module_debug.cpython-311.pyc,sha256=A1sj3R_6TP8K4oK0HxOpOLdT_BuOiHDHtoY1L2YZEQY,12302
373
+ quarchpy/debug/__pycache__/module_debug.cpython-311.pyc,sha256=6dWHK4NR-PSSyqW54qwHfPBZaswIiYOO_DqKo0L4M7A,12302
371
374
  quarchpy/debug/__pycache__/simple_terminal.cpython-311.pyc,sha256=FUGndmHhjULN_27vGh4pIB5znIYwjm8LuIaCTz99LpA,2150
372
375
  quarchpy/debug/__pycache__/upgrade_quarchpy.cpython-311.pyc,sha256=t4ayNpm2XXjlFPMB9CzjruDzKqFzx3DALQK_xeUt274,6004
373
376
  quarchpy/debug/__pycache__/versionCompare.cpython-311.pyc,sha256=SZMsqIThyxxN9jjj2mdL-GbbGHQXTVREmfMBhX3FMto,2633
@@ -376,13 +379,14 @@ quarchpy/device/device.py,sha256=5NZ-mq0tRtqflpkrCC6Yq9q2Ng7Cu_5_z3i5__Q9rJk,218
376
379
  quarchpy/device/quarchArray.py,sha256=_8z6P1wCtIs2kkkAzNRc1YrT-NmGRvzd3btqa-Yl3Hc,2816
377
380
  quarchpy/device/quarchPPM.py,sha256=DnqkdxDjyu533RL2ZL0ISpe2nSXTkm4O6jFqAnZZf6g,3271
378
381
  quarchpy/device/quarchQPS.py,sha256=RMsNGk_nf05pv15bAPdStpE366k7yGdo-SlbwFZcNEY,19050
379
- quarchpy/device/scanDevices.py,sha256=Z335RWlp0Po-E3VXalMNch30s2DonsnBZg-3KqT8lj8,27966
382
+ quarchpy/device/scanDevices.py,sha256=tz8lWPOJFme8geNFYLBNDrvaDiXcr62fd1hWc8eM0p4,27010
383
+ quarchpy/device/scanDevices.py.bak,sha256=O2suiDcXv9fBwTHINLv2olm1wG_kvrTmiL7GmwbETCA,27005
380
384
  quarchpy/device/__pycache__/__init__.cpython-311.pyc,sha256=psUuu2uPIYaq9miM-JGcsyVjQCA_chDPi4Zc5u8HhoI,800
381
385
  quarchpy/device/__pycache__/device.cpython-311.pyc,sha256=T3QVCtsoYVsg_B5w2zd4RYG3jQQzKSWhg4K9aYoTR1w,23179
382
386
  quarchpy/device/__pycache__/quarchArray.cpython-311.pyc,sha256=4queqN_-76PDUOfrKrAWDN3_lWf99JIXpvgcX4aG4nY,3847
383
387
  quarchpy/device/__pycache__/quarchPPM.cpython-311.pyc,sha256=csv9251fa6xOpZkO_3yveKpwtdUGKPlNqyaVXteyzL4,4836
384
388
  quarchpy/device/__pycache__/quarchQPS.cpython-311.pyc,sha256=isJLKv0GhX0ELGfcUguzD3pDLYYDEOAA6pcjlACaPbA,23302
385
- quarchpy/device/__pycache__/scanDevices.cpython-311.pyc,sha256=BtukOmMMhCLXNmQN1R6dk_cGSADYXlJyHDSFmsNq1hs,28522
389
+ quarchpy/device/__pycache__/scanDevices.cpython-311.pyc,sha256=fwzYGlGqkWa98gKMGrfHqz0IlOIpD07iTmt6G2RYs0c,28896
386
390
  quarchpy/disk_test/AbsDiskFinder.py,sha256=QhtekaSSKubikGM7aqZ916u7Cc22FLEB7CqGiEvdByc,377
387
391
  quarchpy/disk_test/DiskTargetSelection.py,sha256=BY3zc7mg7FPxEp9OB2yRkyYIHRwrAB6U0XrsSWZrKU4,925
388
392
  quarchpy/disk_test/__init__.py,sha256=3-LXyQMX5macnPaHc8J3mcJQ7faTInycD8-skQYyFbE,59
@@ -391,18 +395,18 @@ quarchpy/disk_test/__pycache__/AbsDiskFinder.cpython-311.pyc,sha256=JMmjbKTxLhIH
391
395
  quarchpy/disk_test/__pycache__/DiskTargetSelection.cpython-311.pyc,sha256=Ww9sjmyo8jTlWQFiTYFl5IF2BGNxlcqSpAfr4wqCToc,953
392
396
  quarchpy/disk_test/__pycache__/__init__.cpython-311.pyc,sha256=xiXguQxjc52ElCysXLWdv-aGZdbUlC914mECiDX_igE,262
393
397
  quarchpy/disk_test/__pycache__/iometerDiskFinder.cpython-311.pyc,sha256=vJsHwKIHbthEymWnD2wqhmSK6gdrDcdKZyC4oohV1Jc,8169
394
- quarchpy/docs/CHANGES.rst,sha256=hpAQs6SNvfJa1_tZIrrtGj97c8bmjJ8FSXXg_ltiaB8,8088
398
+ quarchpy/docs/CHANGES.rst,sha256=FvV-mld1OT2kpFsc_7oxz7OS2HGursZHk6nGfWNJWAU,8289
395
399
  quarchpy/docs/Makefile,sha256=i2WHuFlgfyAPEW4ssEP8NY4cOibDJrVjvzSEU8_Ggwc,634
396
400
  quarchpy/docs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
397
401
  quarchpy/docs/conf.py,sha256=O7OA1iyPQd-5okMGA5mClatZSoyF3ItLHS4hOq8kymQ,2067
398
402
  quarchpy/docs/index.rst,sha256=G1KKNs1MQKWGUIpuHrx6HbxltwNROtFhL0Ec9lcB5iw,539
399
403
  quarchpy/docs/make.bat,sha256=tZPNHaGTFKQ9uaCFT2-S8sWSF1cVAtozIflJjAL6Fsg,795
400
404
  quarchpy/docs/readme.rst,sha256=Oc_vFvpc_U3yJxmeSfdtAnWTj_azNVHkSyuJoQkUb4Q,965
401
- quarchpy/docs/_build/doctrees/CHANGES.doctree,sha256=BKPR4qm2JZ8kC8w3QhLKHpw9Q3-0R3VNcSbuCkkLE8U,59261
402
- quarchpy/docs/_build/doctrees/environment.pickle,sha256=NTOlQj-9QranjNWvCZrhJJ6e3FSU3EB3unGxnWy15AY,1810916
405
+ quarchpy/docs/_build/doctrees/CHANGES.doctree,sha256=srdpPKEiiZ6HOMd1iUcNSv_jLjjv4eKpdP8SGxzBRRM,61624
406
+ quarchpy/docs/_build/doctrees/environment.pickle,sha256=0dtd-jV70U4htUE9r83t3f7xSMlFt449w103W98kLZ8,1843345
403
407
  quarchpy/docs/_build/doctrees/index.doctree,sha256=qA1Sak54l3C6kmIv6DoUdeVYGVaTAKaL_Ey9yHHOfuA,5113
404
408
  quarchpy/docs/_build/doctrees/readme.doctree,sha256=su_TSMt8VOv8IClNWK_Kqcgah89kGmEzWe7CVWrI1M8,7528
405
- quarchpy/docs/_build/doctrees/source/changelog.doctree,sha256=-yn-GcCwo0Ifszb2Xf7MlPJRgxixYJZPtm-uLoSyhao,59454
409
+ quarchpy/docs/_build/doctrees/source/changelog.doctree,sha256=DXik2gEP-itR1j3ldGUY5CdYav7AM2m_1HKoq76ED8M,61817
406
410
  quarchpy/docs/_build/doctrees/source/licenses.doctree,sha256=z011YNUPI6ygn-HFGFGG2s28DwoGR6QoDqmZVm01guQ,14713
407
411
  quarchpy/docs/_build/doctrees/source/modules.doctree,sha256=Lj1RBgetv82PSjJUlihaoKOzoiyA4jW4w39kw4uO79M,2783
408
412
  quarchpy/docs/_build/doctrees/source/quarchpy.calibration.doctree,sha256=V-EaARF0LD57bsJbJYwaBeUj2IB3mW1wUxxiyhwazOM,5875
@@ -412,23 +416,23 @@ quarchpy/docs/_build/doctrees/source/quarchpy.debug.doctree,sha256=UJ3bmSc4JCf5h
412
416
  quarchpy/docs/_build/doctrees/source/quarchpy.device.doctree,sha256=6MpizuOz33AnRKlfG-sGRnf9YWVlDAZsjpcLltHmqhA,310088
413
417
  quarchpy/docs/_build/doctrees/source/quarchpy.disk_test.doctree,sha256=C9HwPA9wKG7hQaQDKF2LdTAix8f5RovCcgRvCrq_Zvw,28675
414
418
  quarchpy/docs/_build/doctrees/source/quarchpy.doctree,sha256=vtrrMrRsYOLBIpfTlxuQcMphiHR9Etf74k_7nP4-3pM,14763
415
- quarchpy/docs/_build/doctrees/source/quarchpy.fio.doctree,sha256=w16lhxPFFDr58K8YfW1t6wRcV9RWfli2Iu0xUUal8Xc,17979
419
+ quarchpy/docs/_build/doctrees/source/quarchpy.fio.doctree,sha256=xrqNTmtF0edh6p8iOYIQe47y6EuC7ysEGtblO7v-fLc,24603
416
420
  quarchpy/docs/_build/doctrees/source/quarchpy.iometer.doctree,sha256=Wfpo82mFREZoP4MSU0Su9AMIWaD5RvayQKvFyQt0oto,40845
417
- quarchpy/docs/_build/doctrees/source/quarchpy.qis.doctree,sha256=JY-pU8y3X5jg1azaam7iQT8Ejcj3Kcunsj4zKEKEM3U,162721
418
- quarchpy/docs/_build/doctrees/source/quarchpy.qps.doctree,sha256=a7J7KT1BvQepKSUrMH5L0awziGIvjFPpJ9QKGZGk58w,32773
421
+ quarchpy/docs/_build/doctrees/source/quarchpy.qis.doctree,sha256=x2Kpl-2HbSC2bShYKoOmjIfp-zz3dictq1w9-n9uTlw,165305
422
+ quarchpy/docs/_build/doctrees/source/quarchpy.qps.doctree,sha256=HFg-gaCbZ6KwV6GD2eFPG_yhOQF-2XZ2SbVIwkEnkGQ,36217
419
423
  quarchpy/docs/_build/doctrees/source/quarchpy.user_interface.doctree,sha256=SmzAVkxmbYEKyIbSM2bgFXzw_JP2i1JK0Oiok2W3Yyk,67500
420
424
  quarchpy/docs/_build/doctrees/source/quarchpy.utilities.doctree,sha256=RpcSykUGGTga8OS7zPMpslG-trBM9WcUf89ajMv_ZUg,26546
421
425
  quarchpy/docs/_build/doctrees/source/readme.doctree,sha256=CNr4CgRoKC9EcIzDmfLQ_tmZaT3_IJrqyzE7sabrsuk,7693
422
426
  quarchpy/docs/_build/html/.buildinfo,sha256=4BoiCnu9Rv20a7ckoECU7c9JytT5jQ0QTCeqpojACwU,234
423
- quarchpy/docs/_build/html/CHANGES.html,sha256=sDl99AuSKhbskcDBOshRSX8AzaPnZuurluE584hgN_Q,20331
424
- quarchpy/docs/_build/html/genindex.html,sha256=zhCuw-lYV4NyHCdkPafOr8kdeCBbixrjLS8k3kuuAwE,87622
425
- quarchpy/docs/_build/html/index.html,sha256=Po9k_r26b_5q8F6XY1jroOLLs0JZAgmgKK3pnDzG3Fk,11042
426
- quarchpy/docs/_build/html/objects.inv,sha256=jSw2y5i28M6KpGw6YacEm7UcC1-0_siPa8Qt-WfGAY4,3621
427
- quarchpy/docs/_build/html/py-modindex.html,sha256=rj6yod1kRUkSLDGhZXCVBa86T04WddX04V-MXdvjA_U,12915
427
+ quarchpy/docs/_build/html/CHANGES.html,sha256=HoB18O1OBDtnd0kg5dijUZVvaebxdOst5GcJ5esApks,20992
428
+ quarchpy/docs/_build/html/genindex.html,sha256=blHdwFzrr-jePxu1zisYQdEAfIYo3RRVASXghsFk3J4,89002
429
+ quarchpy/docs/_build/html/index.html,sha256=TtOyS28rrUc2E2Jcf5n0umLYvE7hJ6-6OD3erY-GEts,11354
430
+ quarchpy/docs/_build/html/objects.inv,sha256=OWl_HbzaKjNdknIbP-xIoyRsjzBVQJHZS7fz-6yTo6s,3681
431
+ quarchpy/docs/_build/html/py-modindex.html,sha256=bsGE3E1n_KSZBxw5mYMw6NyH1mgaAr8TXZ4FNtsaxC4,13159
428
432
  quarchpy/docs/_build/html/readme.html,sha256=tRi5gV8kQX73DSwLcXHL5gOJdnYsW7g87rx53GFMUyM,4872
429
433
  quarchpy/docs/_build/html/search.html,sha256=5hgJDzBOkVr5xjph5N3xYK8BsJTtFqyAVj3CD-6L6zw,3289
430
- quarchpy/docs/_build/html/searchindex.js,sha256=UkrtNms2OLLkGbEirD9YDnSAvW0kYfUp8u-qqUZLiiQ,100996
431
- quarchpy/docs/_build/html/_sources/CHANGES.rst.txt,sha256=hpAQs6SNvfJa1_tZIrrtGj97c8bmjJ8FSXXg_ltiaB8,8088
434
+ quarchpy/docs/_build/html/searchindex.js,sha256=hFclzpJhEHjA8F9Pv4Xg3u0MN0ok-Janz4ON-DWepn8,83510
435
+ quarchpy/docs/_build/html/_sources/CHANGES.rst.txt,sha256=z-H2T1Ti0O6LGxd6_tePziOPRMmnE1nRxo1Nr3Bh6bU,8289
432
436
  quarchpy/docs/_build/html/_sources/index.rst.txt,sha256=G1KKNs1MQKWGUIpuHrx6HbxltwNROtFhL0Ec9lcB5iw,539
433
437
  quarchpy/docs/_build/html/_sources/readme.rst.txt,sha256=Oc_vFvpc_U3yJxmeSfdtAnWTj_azNVHkSyuJoQkUb4Q,965
434
438
  quarchpy/docs/_build/html/_sources/source/changelog.rst.txt,sha256=sJN9p_g3lnCTbkDAuALwU3PMlWhSS__CsGQbo7XpoYI,27
@@ -464,20 +468,20 @@ quarchpy/docs/_build/html/_static/searchtools.js,sha256=MBKlIcpMMsVpOa9qZ-T0uPX7
464
468
  quarchpy/docs/_build/html/_static/sphinx_highlight.js,sha256=CWIx6ch9-A7DJz2pxbcbyBUDIGcmoHpN1N5Ewlb_hZw,5123
465
469
  quarchpy/docs/_build/html/_static/underscore-1.3.1.js,sha256=-AjwqjL76Q-5ychGkX-v8_3U4jbChLdsAt0zdT3JAXc,35168
466
470
  quarchpy/docs/_build/html/_static/underscore.js,sha256=IY-xwfxy6a9rhm9DC-Kmf6N2OStNsvTb8ydyZxtq5Vw,19530
467
- quarchpy/docs/_build/html/source/changelog.html,sha256=hVW9Y7CHxtUoHQdVowR3Kq0uuwHRx5x6jUE1zpJWNTU,25105
471
+ quarchpy/docs/_build/html/source/changelog.html,sha256=X4ALK20fNFwwSknHoTuOiYGyNdCZeVK9xcEFjlvCJew,26015
468
472
  quarchpy/docs/_build/html/source/licenses.html,sha256=MmFBPnLasQ6NFRVE0uSzyTQC4eGBnWGrY9-G42p2daQ,7919
469
- quarchpy/docs/_build/html/source/modules.html,sha256=i0y2xXZsxzoGSoqIRVVJDGFtIn9wy10hoUVTNhgfFMc,15181
473
+ quarchpy/docs/_build/html/source/modules.html,sha256=ZdEFUgAGsgyzYmTZhioCsFjQ4a9SU_yVhGhx1r-FUng,15181
470
474
  quarchpy/docs/_build/html/source/quarchpy.calibration.html,sha256=IFWm05xi7bqROYz2jJdO3_Gdacjehzq-3WiKDccFIzY,6279
471
475
  quarchpy/docs/_build/html/source/quarchpy.config_files.html,sha256=i03qGTaatW-dZxW0apRKtPNt7qiqKy7DtvRNogAF5iU,6065
472
476
  quarchpy/docs/_build/html/source/quarchpy.connection_specific.html,sha256=V0iXqM1MAJs6XuIiJVfYmlSfN8VL9Elzr9FaLjqF2Gc,79498
473
477
  quarchpy/docs/_build/html/source/quarchpy.debug.html,sha256=0C49jnZHOf_xcBqryRgSETMGMdKHbf1C0L7ViRc6me4,15314
474
478
  quarchpy/docs/_build/html/source/quarchpy.device.html,sha256=4KMtVEik6STfsG1VkAqu7eOkVhf06jAGjKAuVrZzBJc,110549
475
479
  quarchpy/docs/_build/html/source/quarchpy.disk_test.html,sha256=vXeDcicE2Yd7-14MzWTunprRpROcTMvqtgNnBtDEFxU,13875
476
- quarchpy/docs/_build/html/source/quarchpy.fio.html,sha256=wVP4r4dMIRe8VyVK-3hbv_hgHK_Cb6pR4fHyw6kKrHQ,10629
477
- quarchpy/docs/_build/html/source/quarchpy.html,sha256=XWVdqxv3psBhWUL0YJyfVFE8__Ya2VcGUBDobmWrT3M,106206
480
+ quarchpy/docs/_build/html/source/quarchpy.fio.html,sha256=c48kaccghCGUTB8s5Dx3TeP5gV4GAiWSV77N0r5HuXc,12968
481
+ quarchpy/docs/_build/html/source/quarchpy.html,sha256=qU8VDcxDn9Ih4oAG1zcOB90Tnv3eMNYf0vBBEz5WHmc,107824
478
482
  quarchpy/docs/_build/html/source/quarchpy.iometer.html,sha256=gfOhISpv-EcWrElGYSsMFAdtVZPyXgjzLLWvHmgkwYU,17649
479
- quarchpy/docs/_build/html/source/quarchpy.qis.html,sha256=fCEBNze_s1nD4B6EXlJlb7UYmthVAFnB9BEacHfYFw0,60582
480
- quarchpy/docs/_build/html/source/quarchpy.qps.html,sha256=xhxj_ajxZ8TZKc-TAqsNJbWjpvwqMmsvxMql7Da5wQs,16395
483
+ quarchpy/docs/_build/html/source/quarchpy.qis.html,sha256=ULW3tEQXTptwu_Rv1ojAUJ5cChYtvrFZL6xj2m9e0AU,61668
484
+ quarchpy/docs/_build/html/source/quarchpy.qps.html,sha256=FYXzOLlQ-TFxyPSA7zh8Bc71ggAfiRJcHLdHunUtJxo,17871
481
485
  quarchpy/docs/_build/html/source/quarchpy.user_interface.html,sha256=TzkajiGL5viuoE2kr42xAfP-v2eQcPuBMFDmxDKyWko,31643
482
486
  quarchpy/docs/_build/html/source/quarchpy.utilities.html,sha256=tz9UcYHQ6ayctXYJZoLMgmJxaoLCLHia-SCugnVzr7Q,12027
483
487
  quarchpy/docs/_build/html/source/readme.html,sha256=C0i5nByQp8W0nxAIu9LQHqcHz7sbzOhZo-XjjsuI2w8,5655
@@ -504,7 +508,7 @@ quarchpy/fio/__init__.py,sha256=keB7UPgsLZ8PNdnM5UKdAVPW3PBMTz6vT0AfQaigGZ0,61
504
508
  quarchpy/fio/fioDiskFinder.py,sha256=9an3dLRDzJHkKLk9SAWI7oNK5qp1MZ1gKt42Pdg3FSA,2962
505
509
  quarchpy/fio/performanceClass.py,sha256=HuhKBIb6z2yaZUU8VeKCls0PR0u82aJvKFOqb-eoZH4,38530
506
510
  quarchpy/fio/test_performance_class.py,sha256=bjU8taCRWPdPL4hoDqZbdzBTKihOPTmqYCaI2ZZG_Xo,20793
507
- quarchpy/fio/__pycache__/FIO_interface.cpython-311.pyc,sha256=HswFQqEFjeXM_kCotl7GEzCisLeljx-NSWu5zSyCc8M,11923
511
+ quarchpy/fio/__pycache__/FIO_interface.cpython-311.pyc,sha256=FhufSPZca9waKt3iQHaW6DHFXoVaTiIb4vT6Rh-TdOE,12016
508
512
  quarchpy/fio/__pycache__/__init__.cpython-311.pyc,sha256=Q3cCTrYJT2bVDUbrSxDgvXs3ocr0IwjbpMYov_Xo1tM,261
509
513
  quarchpy/fio/__pycache__/fioDiskFinder.cpython-311.pyc,sha256=jarmQgMupfZrvYkSs9OGAod1wYzXa1UMVxQH-3FMRp4,3861
510
514
  quarchpy/iometer/IometerTemplate.dat,sha256=BxaoPvJlAxpLgVt0y9T1jAisvZNggto9JlrVjqDifO4,2008
@@ -516,15 +520,15 @@ quarchpy/iometer/__pycache__/gen_iometer_template.cpython-311.pyc,sha256=XN0EIan
516
520
  quarchpy/iometer/__pycache__/iometerFuncs.cpython-311.pyc,sha256=24YWN-As-Db59o7X8nkEzNm-8N6e7iNdB8RSNctRtMg,14056
517
521
  quarchpy/qis/StreamHeaderInfo.py,sha256=ynKRSnZPrRK6qtREbn4YQgweY-WWlP98-gl1YB1syh8,8150
518
522
  quarchpy/qis/__init__.py,sha256=QRVPy96G7RUx6ldofcD-xNN4NHeNjkasSu8DXkyRB0k,307
519
- quarchpy/qis/qisFuncs.py,sha256=-qs27W0lbJKfNeJcRNhrEQOFaJ_8OW2p9B0qt6g0ma4,7508
523
+ quarchpy/qis/qisFuncs.py,sha256=8vJSlXMFQElOQXBrAflDLi-nvWjm429RqhXflMrWf9k,9131
520
524
  quarchpy/qis/__pycache__/StreamHeaderInfo.cpython-311.pyc,sha256=--tLd-gYWXhqq4we4tDHLuaqsCeQmLydfmnhRC06UxQ,7552
521
525
  quarchpy/qis/__pycache__/__init__.cpython-311.pyc,sha256=iN5IESibZ-jL92PlV9YInk9Y6WgXnMBCCppve6U37Ss,539
522
- quarchpy/qis/__pycache__/qisFuncs.cpython-311.pyc,sha256=M405DU66Tw-Dn_DYavc8vhZWW9j6IrlbOFtUxEKavls,8185
526
+ quarchpy/qis/__pycache__/qisFuncs.cpython-311.pyc,sha256=sif00Dj6LA2ygYkyIX8ebdqS6WtGpYkiuCw_FvjmYYo,11060
523
527
  quarchpy/qps/__init__.py,sha256=5urxSvqUWmonIrhyvrSQDpNtZubfVEU8JrqRmzm4wH0,303
524
- quarchpy/qps/qpsFuncs.py,sha256=DpxRasajAKC6nXPco4Apmdw3bU6k8nK6JfNUQxFUOQs,8738
525
- quarchpy/qps/qpsFuncs.py.bak,sha256=0exmt0pkKnAN2_n9e0kTJLc57FQm9JasK0ckAh3Ky-M,8391
528
+ quarchpy/qps/qpsFuncs.py,sha256=Hq5IKGlcmTEkH5vynf3ujz9tQosW5yD5lLXhEVTXS3I,10243
529
+ quarchpy/qps/qpsFuncs.py.bak,sha256=6X-G4sDetLccBh25ASnMAoYVXlmzYCImq8GO8PUooxI,10239
526
530
  quarchpy/qps/__pycache__/__init__.cpython-311.pyc,sha256=u4HxJG9PgQW7_tTWNNarAUdklZKmEfi9l5-nS3RMpY4,534
527
- quarchpy/qps/__pycache__/qpsFuncs.cpython-311.pyc,sha256=XlpyNVpw-BQzWAsfH1-k9Y0H8n6Lo5PmPjfR7N7Lww4,10492
531
+ quarchpy/qps/__pycache__/qpsFuncs.cpython-311.pyc,sha256=Cph96WzKb9M5kP5KyZvtp-v_DvAlcLOQRx9pDp45fBg,13085
528
532
  quarchpy/user_interface/__init__.py,sha256=ix0icQvmKUTRgvfhXK3PxiDGyITkPYY-08hFjuhbupo,298
529
533
  quarchpy/user_interface/user_interface.py,sha256=MhVuk9Dk09oF9824Tw5KZE5kjB6uBXLr1eguWQ3q3Us,29440
530
534
  quarchpy/user_interface/__pycache__/__init__.cpython-311.pyc,sha256=4JIHmLWMlXa_d8hgImJyk_N30rkeKstlBIuPL2UShiU,228
@@ -538,7 +542,7 @@ quarchpy/utilities/__pycache__/TestCenter.cpython-311.pyc,sha256=_UO4zwZCXuznDpS
538
542
  quarchpy/utilities/__pycache__/TimeValue.cpython-311.pyc,sha256=ShR7DP-FHUuWH74pUb0OugHbjYC4rakZeFX8tpO1Fdg,2638
539
543
  quarchpy/utilities/__pycache__/Version.cpython-311.pyc,sha256=2S8F_bM_1UWCsP7g_6VzA3TEX9BM4d8eenyg-FSK1F4,2667
540
544
  quarchpy/utilities/__pycache__/__init__.cpython-311.pyc,sha256=cmX2CddmCY0kFOggeHGzmpQM8GvR2cjwfMg3f9TR3bU,182
541
- quarchpy-2.1.17.dev1.dist-info/METADATA,sha256=kyk9ibcx_K-qY55OcYzjZMiSwPVity4L15Jji7bZagk,8860
542
- quarchpy-2.1.17.dev1.dist-info/WHEEL,sha256=a-zpFRIJzOq5QfuhBzbhiA1eHTzNCJn8OdRvhdNX0Rk,110
543
- quarchpy-2.1.17.dev1.dist-info/top_level.txt,sha256=Vc7qsvkVax7oeBaBy_e7kvJvqb_VAAJcW_MuDMmi5W8,9
544
- quarchpy-2.1.17.dev1.dist-info/RECORD,,
545
+ quarchpy-2.1.18.dev1.dist-info/METADATA,sha256=8_xQ8-D_95vwSgXdoyweoRPaqI5e7npbw7lJbH0XD-g,9142
546
+ quarchpy-2.1.18.dev1.dist-info/WHEEL,sha256=a-zpFRIJzOq5QfuhBzbhiA1eHTzNCJn8OdRvhdNX0Rk,110
547
+ quarchpy-2.1.18.dev1.dist-info/top_level.txt,sha256=Vc7qsvkVax7oeBaBy_e7kvJvqb_VAAJcW_MuDMmi5W8,9
548
+ quarchpy-2.1.18.dev1.dist-info/RECORD,,