rs-mrt-dau-utilities 0.2.0__py3-none-any.whl → 0.2.2__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.
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: rs-mrt-dau-utilities
|
|
3
|
+
Version: 0.2.2
|
|
4
|
+
Summary: Add your description here
|
|
5
|
+
Author: Didier Chagniot
|
|
6
|
+
Author-email: Didier Chagniot <didier.chagniot@rohde-schwarz.com>
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
+
Requires-Dist: altair>=5.5.0
|
|
15
|
+
Requires-Dist: fast-json-normalize>=0.0.9
|
|
16
|
+
Requires-Dist: polars==1.35.2
|
|
17
|
+
Requires-Python: >=3.11
|
|
18
|
+
Description-Content-Type: text/x-rst
|
|
19
|
+
|
|
20
|
+
=====================
|
|
21
|
+
rs-mrt-dau-utilities
|
|
22
|
+
=====================
|
|
23
|
+
|
|
24
|
+
.. image:: https://img.shields.io/pypi/v/rs-mrt-dau-utilities.svg
|
|
25
|
+
:target: https://pypi.org/project/rs-mrt-dau-utilities/
|
|
26
|
+
|
|
27
|
+
.. image:: https://readthedocs.org/projects/sphinx/badge/?version=master
|
|
28
|
+
:target: https://rs-mrt-dau-utilities.readthedocs.io/
|
|
29
|
+
|
|
30
|
+
.. image:: https://img.shields.io/pypi/l/rs-mrt-dau-utilities.svg
|
|
31
|
+
:target: https://pypi.python.org/pypi/rs-mrt-dau-utilities/
|
|
32
|
+
|
|
33
|
+
.. image:: https://img.shields.io/pypi/pyversions/pybadges.svg
|
|
34
|
+
:target: https://img.shields.io/pypi/pyversions/pybadges.svg
|
|
35
|
+
|
|
36
|
+
.. image:: https://img.shields.io/pypi/dm/rs-mrt-dau-utilities.svg
|
|
37
|
+
:target: https://pypi.python.org/pypi/rs-mrt-dau-utilities/
|
|
38
|
+
|
|
39
|
+
rs-mrt-dau-utilities package provides two convenient modules for Rohde & Schwarz Data Application Unit (DAU):
|
|
40
|
+
- `ip_analysis` module for creating Polars dataframes from the SCPI results.
|
|
41
|
+
- `delay` module for creating Polars dataframes from the centralservice.log file.
|
|
42
|
+
|
|
43
|
+
ip_analysis code:
|
|
44
|
+
|
|
45
|
+
.. code-block:: python
|
|
46
|
+
|
|
47
|
+
from RsInstrument import *
|
|
48
|
+
import rs_mrt_dau_utilities.ip_analysis as ipana
|
|
49
|
+
|
|
50
|
+
cmx = RsInstrument('TCPIP::10.102.20.55::hislip0')
|
|
51
|
+
iden = cmx.query("*IDN?")
|
|
52
|
+
print(iden)
|
|
53
|
+
ip_analysis_res=cmx.query('FETCh:DATA:MEASurement:IPANalysis:RESult?')
|
|
54
|
+
parsed_sequences = ipana.ipanalysis_parse_scpi_result(ip_analysis_res)
|
|
55
|
+
|
|
56
|
+
list_of_dfs = ipana.ipanalysis_init_dataframes()
|
|
57
|
+
|
|
58
|
+
for sequence in parsed_sequences:
|
|
59
|
+
for message in sequence['json_messages']:
|
|
60
|
+
ipana.ipanalysis_update_dataframes(list_of_dfs, message)
|
|
61
|
+
|
|
62
|
+
print(list_of_dfs)
|
|
63
|
+
|
|
64
|
+
Check out the full documentation on `ReadTheDocs <https://rs-mrt-dau-utilities.readthedocs.io/>`_.
|
|
65
|
+
|
|
66
|
+
Our public `Rohde&Schwarz Github repository <https://github.com/Rohde-Schwarz/Examples/tree/main/Misc/Python/rs-mrt-dau-utilities>`_ hosts many examples using this library.
|
|
67
|
+
If you're looking for examples with specific instruments, check out the ones for
|
|
68
|
+
`Oscilloscopes <https://github.com/Rohde-Schwarz/Examples/tree/main/Oscilloscopes/Python/RsInstrument>`_,
|
|
69
|
+
`Powersensors <https://github.com/Rohde-Schwarz/Examples/tree/main/Powersensors/Python/RsInstrument>`_,
|
|
70
|
+
`Powersupplies <https://github.com/Rohde-Schwarz/Examples/tree/main/Powersupplies/Python/RsInstrument>`_,
|
|
71
|
+
`Spectrum Analyzers <https://github.com/Rohde-Schwarz/Examples/tree/main/SpectrumAnalyzers/Python/RsInstrument>`_,
|
|
72
|
+
`Vector Network Analyzers <https://github.com/Rohde-Schwarz/Examples/tree/main/VectorNetworkAnalyzers/Python/RsInstrument>`_.
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
Version history:
|
|
76
|
+
----------------
|
|
77
|
+
|
|
78
|
+
Version 0.2.0 (14.11.2025)
|
|
79
|
+
- initial release.
|
|
@@ -5,6 +5,6 @@ rs_mrt_dau_utilities/delay_meas/dev.py,sha256=6KUTSE3Em6QsEWHpbEYmG06jKfTKsMZeDk
|
|
|
5
5
|
rs_mrt_dau_utilities/ip_analysis/__init__.py,sha256=LQUaB1PjfXH-I2y1j47UL1tLBCwtwFAuYDkhzHP2JB0,404
|
|
6
6
|
rs_mrt_dau_utilities/ip_analysis/ip_analysis.py,sha256=Z0dEkiG_tJ5yw_Ix00zW28qHlXCAQ-1O2_OrJJ_tb3U,7025
|
|
7
7
|
rs_mrt_dau_utilities/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
rs_mrt_dau_utilities-0.2.
|
|
9
|
-
rs_mrt_dau_utilities-0.2.
|
|
10
|
-
rs_mrt_dau_utilities-0.2.
|
|
8
|
+
rs_mrt_dau_utilities-0.2.2.dist-info/WHEEL,sha256=93kfTGt3a0Dykt_T-gsjtyS5_p8F_d6CE1NwmBOirzo,79
|
|
9
|
+
rs_mrt_dau_utilities-0.2.2.dist-info/METADATA,sha256=M7o_KvuH1_PDvfcuNQALrvkaJZEfaMMko5xpej-On1c,3270
|
|
10
|
+
rs_mrt_dau_utilities-0.2.2.dist-info/RECORD,,
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: rs-mrt-dau-utilities
|
|
3
|
-
Version: 0.2.0
|
|
4
|
-
Summary: Add your description here
|
|
5
|
-
Author: Didier Chagniot
|
|
6
|
-
Author-email: Didier Chagniot <didier.chagniot@rohde-schwarz.com>
|
|
7
|
-
License-Expression: MIT
|
|
8
|
-
Requires-Dist: altair>=5.5.0
|
|
9
|
-
Requires-Dist: fast-json-normalize>=0.0.9
|
|
10
|
-
Requires-Dist: polars==1.35.2
|
|
11
|
-
Requires-Python: >=3.11
|
|
12
|
-
Description-Content-Type: text/markdown
|
|
13
|
-
|
|
14
|
-
# rs-mrt-dau-utilities
|