pymagnetos 0.1.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.
- pymagnetos/__init__.py +15 -0
- pymagnetos/cli.py +40 -0
- pymagnetos/core/__init__.py +19 -0
- pymagnetos/core/_config.py +340 -0
- pymagnetos/core/_data.py +132 -0
- pymagnetos/core/_processor.py +905 -0
- pymagnetos/core/config_models.py +57 -0
- pymagnetos/core/gui/__init__.py +6 -0
- pymagnetos/core/gui/_base_mainwindow.py +819 -0
- pymagnetos/core/gui/widgets/__init__.py +19 -0
- pymagnetos/core/gui/widgets/_batch_processing.py +319 -0
- pymagnetos/core/gui/widgets/_configuration.py +167 -0
- pymagnetos/core/gui/widgets/_files.py +129 -0
- pymagnetos/core/gui/widgets/_graphs.py +93 -0
- pymagnetos/core/gui/widgets/_param_content.py +20 -0
- pymagnetos/core/gui/widgets/_popup_progressbar.py +29 -0
- pymagnetos/core/gui/widgets/_text_logger.py +32 -0
- pymagnetos/core/signal_processing.py +1004 -0
- pymagnetos/core/utils.py +85 -0
- pymagnetos/log.py +126 -0
- pymagnetos/py.typed +0 -0
- pymagnetos/pytdo/__init__.py +6 -0
- pymagnetos/pytdo/_config.py +24 -0
- pymagnetos/pytdo/_config_models.py +59 -0
- pymagnetos/pytdo/_tdoprocessor.py +1052 -0
- pymagnetos/pytdo/assets/config_default.toml +84 -0
- pymagnetos/pytdo/gui/__init__.py +26 -0
- pymagnetos/pytdo/gui/_worker.py +106 -0
- pymagnetos/pytdo/gui/main.py +617 -0
- pymagnetos/pytdo/gui/widgets/__init__.py +8 -0
- pymagnetos/pytdo/gui/widgets/_buttons.py +66 -0
- pymagnetos/pytdo/gui/widgets/_configuration.py +78 -0
- pymagnetos/pytdo/gui/widgets/_graphs.py +280 -0
- pymagnetos/pytdo/gui/widgets/_param_content.py +137 -0
- pymagnetos/pyuson/__init__.py +7 -0
- pymagnetos/pyuson/_config.py +26 -0
- pymagnetos/pyuson/_config_models.py +71 -0
- pymagnetos/pyuson/_echoprocessor.py +1901 -0
- pymagnetos/pyuson/assets/config_default.toml +92 -0
- pymagnetos/pyuson/gui/__init__.py +26 -0
- pymagnetos/pyuson/gui/_worker.py +135 -0
- pymagnetos/pyuson/gui/main.py +767 -0
- pymagnetos/pyuson/gui/widgets/__init__.py +7 -0
- pymagnetos/pyuson/gui/widgets/_buttons.py +95 -0
- pymagnetos/pyuson/gui/widgets/_configuration.py +85 -0
- pymagnetos/pyuson/gui/widgets/_graphs.py +248 -0
- pymagnetos/pyuson/gui/widgets/_param_content.py +193 -0
- pymagnetos-0.1.0.dist-info/METADATA +23 -0
- pymagnetos-0.1.0.dist-info/RECORD +51 -0
- pymagnetos-0.1.0.dist-info/WHEEL +4 -0
- pymagnetos-0.1.0.dist-info/entry_points.txt +7 -0
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
pymagnetos/__init__.py,sha256=ArzvcH4UlN4J_h6UwjIYRz_TAogNL1U44kpw-bdsZgs,362
|
|
2
|
+
pymagnetos/cli.py,sha256=e74RJ1CtJjf4xxlCF_oQzG_o6b0FPaHt4MHoTh4Uey4,1065
|
|
3
|
+
pymagnetos/core/__init__.py,sha256=hxZ5GiKuXP1ibdRPhY-7bdDYn9GVVYD2cIgTXCeAq8Q,425
|
|
4
|
+
pymagnetos/core/_config.py,sha256=8arCoJVVU8DtSsn5S-Y3wCqTfMKidzyTwEy1C2R01AY,12633
|
|
5
|
+
pymagnetos/core/_data.py,sha256=-adpQScFxFYmPVbIIit5bmjBoP-nqBUGJEs4XJW0Hyo,4347
|
|
6
|
+
pymagnetos/core/_processor.py,sha256=rYaOe2mwz01dOhlc8NsZuWK0tyAkfb0xS1EDLURGjYI,31042
|
|
7
|
+
pymagnetos/core/config_models.py,sha256=qJdlEtEpbSA1yBoPMl-J6B8h2im6PamsQvvOQjGMqLs,1383
|
|
8
|
+
pymagnetos/core/gui/__init__.py,sha256=ZnSyKX-_bnvXzHZHrJNzlmEhIjwK_pHJbBDcS7LT6cc,165
|
|
9
|
+
pymagnetos/core/gui/_base_mainwindow.py,sha256=q6_fbAXC8leUnydGFS0tGF8lbjT--8fnBgV9-DB08ZY,30275
|
|
10
|
+
pymagnetos/core/gui/widgets/__init__.py,sha256=ppiY9v2nRrc5OeClnBfjxazoASSLS0gHPrsyjQxovxI,562
|
|
11
|
+
pymagnetos/core/gui/widgets/_batch_processing.py,sha256=wSDmoY-TDlkjJ668eV8EA9pC5QqX5LbZs83RtFspOHQ,11724
|
|
12
|
+
pymagnetos/core/gui/widgets/_configuration.py,sha256=5VcDvpLbJXtOLu_P-gJFEkMrklm-0Gmss3dHkXcAiCc,6287
|
|
13
|
+
pymagnetos/core/gui/widgets/_files.py,sha256=6-twFqXmtmpyL4TZRLnCtIVOXtqshKSn4KCYnuEOA1A,4098
|
|
14
|
+
pymagnetos/core/gui/widgets/_graphs.py,sha256=Q-5JxsQ7I5a82ruA68vbEZy2IrE32zO9V2Q2wWcFon0,3211
|
|
15
|
+
pymagnetos/core/gui/widgets/_param_content.py,sha256=HEBCmtZi3BacrKjEudG1mQisDLEChu6dWH-N14AKfRI,843
|
|
16
|
+
pymagnetos/core/gui/widgets/_popup_progressbar.py,sha256=AiZjLn74IpL2TRYdPglvk0ApsVF4Dcy48ZMmDCn49BM,833
|
|
17
|
+
pymagnetos/core/gui/widgets/_text_logger.py,sha256=PfE7Mz5Hb0_4RCuZGCrMggZXsI8RsmIrHG3npdnFZ6A,833
|
|
18
|
+
pymagnetos/core/signal_processing.py,sha256=kXzvBi6OHyzH8GbHj279kwN0x0rvxcAyuwzGatObG54,29298
|
|
19
|
+
pymagnetos/core/utils.py,sha256=VN-eW1jwxoLU_B7l6Eok59bPCWpZsaOuLF4M1eWhevI,2253
|
|
20
|
+
pymagnetos/log.py,sha256=OU1hzX3HJde74eqpNLibUtBRGnwOcRAy_G27Ez9uVCE,3903
|
|
21
|
+
pymagnetos/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
+
pymagnetos/pytdo/__init__.py,sha256=rCDIY_wCON-QlYAwI__qnNmMaDZwAQbTzDC_zHOYCw0,167
|
|
23
|
+
pymagnetos/pytdo/_config.py,sha256=RG9pB3vgclIZ-O9MJP2iQcGzAAQUrmTf05Ad9JAFBdM,705
|
|
24
|
+
pymagnetos/pytdo/_config_models.py,sha256=Twrc-I5RPlsrN1TFxHtaI8xFUSIqkFt85Z1gt7Oe3iE,1171
|
|
25
|
+
pymagnetos/pytdo/_tdoprocessor.py,sha256=a0-zys3vKInlnJcz6UQiZAA91SZ9UdsXi32tyBZYEoM,37022
|
|
26
|
+
pymagnetos/pytdo/assets/config_default.toml,sha256=uKuWshhLpkGHWI3fsBCq1mU4xAQq8anEPaFlD3IjD_4,2919
|
|
27
|
+
pymagnetos/pytdo/gui/__init__.py,sha256=LDqKvBxuNjMDb_aVtdoonl5-ksqdTFUFeQw6YCruOh0,599
|
|
28
|
+
pymagnetos/pytdo/gui/_worker.py,sha256=I9JPls4C_P515rJv6jFRY-0ziIs6r8rcSGxVuldPybE,3400
|
|
29
|
+
pymagnetos/pytdo/gui/main.py,sha256=UVk3EAgGcKG2XdiiZBMK5hY4IlcjiWhbrPQ0d3RJH-o,22351
|
|
30
|
+
pymagnetos/pytdo/gui/widgets/__init__.py,sha256=Q3Iu9_VHXKDJ2iyyHrmBS99Nodh3PjWmX-tJ8jpVbGg,313
|
|
31
|
+
pymagnetos/pytdo/gui/widgets/_buttons.py,sha256=Oek45oBfhxyIqiIA_IZio7KU5e2TjAe1dLKsVoGByIc,2443
|
|
32
|
+
pymagnetos/pytdo/gui/widgets/_configuration.py,sha256=i_6wUI1hQ-9vbeIBWonGniMvLzkn2NynkmSGc6vY60U,2859
|
|
33
|
+
pymagnetos/pytdo/gui/widgets/_graphs.py,sha256=nYrIQDcuZvbgmaN1HIfY1p9RuS_Cgbbe2t8rn37vRLE,11129
|
|
34
|
+
pymagnetos/pytdo/gui/widgets/_param_content.py,sha256=QQDH3462LKvz2Fd6tEd9PjP555I2N0VC6cDSAcQKqlg,3648
|
|
35
|
+
pymagnetos/pyuson/__init__.py,sha256=8M7Y4ZpgiCCuCtmlUb2Rh_dyEQ-pWzBmMLoB1fXjx4o,216
|
|
36
|
+
pymagnetos/pyuson/_config.py,sha256=vDtByZ0MGyPh7mrm4O8Qu4ucIdlTtvTb0lkmKXGADto,775
|
|
37
|
+
pymagnetos/pyuson/_config_models.py,sha256=77pgSwjt0ha4VopcPJ1A2doRgdqC4e3zNYaORJ27BJY,1625
|
|
38
|
+
pymagnetos/pyuson/_echoprocessor.py,sha256=wWYIcsM2IYjdaVYGI5OUjzARcn3ZVmb5flwnBNTKw7g,68298
|
|
39
|
+
pymagnetos/pyuson/assets/config_default.toml,sha256=O6eqGZWPDIxTR2CciQUk59NuCs_f3mw38an9TBvR84E,3037
|
|
40
|
+
pymagnetos/pyuson/gui/__init__.py,sha256=8xSJJHGWz1CBp_KX2RzUdXKBoG_wW-oOw0Dd4SsvJiY,615
|
|
41
|
+
pymagnetos/pyuson/gui/_worker.py,sha256=Gpym533uTOpr1zqLhwPAm4Vs-F1g2sCrULv8wlxDjEU,4618
|
|
42
|
+
pymagnetos/pyuson/gui/main.py,sha256=AekTQMywpMvOENj0UnQONwSvAB7FzRMOryyMYs6kT34,28045
|
|
43
|
+
pymagnetos/pyuson/gui/widgets/__init__.py,sha256=-M7EZ_7YMfQGOnh_1tPnDOI1qBGLKXAI0hfK79Xgcyk,287
|
|
44
|
+
pymagnetos/pyuson/gui/widgets/_buttons.py,sha256=4bJVNa1fKA3tNF9npBqIze6UpVi78u30IYn_7i4dY00,3609
|
|
45
|
+
pymagnetos/pyuson/gui/widgets/_configuration.py,sha256=-RKanfV8KOhkcwv0BDYqB3-8XIkJ73gwGmf24c45TzM,3169
|
|
46
|
+
pymagnetos/pyuson/gui/widgets/_graphs.py,sha256=Wl8hKq7I_PRYCgzhakrfiAac2-o_le-47xUP2tmcedc,9718
|
|
47
|
+
pymagnetos/pyuson/gui/widgets/_param_content.py,sha256=EbQ858nuC1W0F-4bb-ciy6wvrhDZF_0EkBUx2AhOyho,5096
|
|
48
|
+
pymagnetos-0.1.0.dist-info/WHEEL,sha256=e_m4S054HL0hyR3CpOk-b7Q7fDX6BuFkgL5OjAExXas,80
|
|
49
|
+
pymagnetos-0.1.0.dist-info/entry_points.txt,sha256=D-NwSJT0KDcJ657FTQxW8u8tiQP2ZVdDByN9lIYScuQ,135
|
|
50
|
+
pymagnetos-0.1.0.dist-info/METADATA,sha256=i6QRJvMpRsRvpqreC0octLLnv8yDFcgvCgsqiOIy4QM,761
|
|
51
|
+
pymagnetos-0.1.0.dist-info/RECORD,,
|