Metadata-Version: 2.4
Name: RsMxo
Version: 2.6.1
Summary: MXO Seriers Digital Oscilloscopes Driver Remote-control module
Author: Rohde & Schwarz GmbH & Co. KG
Maintainer: Rohde & Schwarz GmbH & Co. KG
License-Expression: MIT
Project-URL: Documentation, https://RsMxo.readthedocs.io/
Project-URL: Examples, https://github.com/Rohde-Schwarz/Examples/
Keywords: MXO,MXO4,MXO5,MXO44,MXO58
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.8
Description-Content-Type: text/x-rst
Requires-Dist: pyvisa>=1.13.0
Requires-Dist: typing-extensions>=4.0.0

==================================
 RsMxo
==================================

.. image:: https://img.shields.io/pypi/v/RsMxo.svg
   :target: https://pypi.org/project/ RsMxo/

.. image:: https://readthedocs.org/projects/sphinx/badge/?version=master
   :target: https://RsMxo.readthedocs.io/

.. image:: https://img.shields.io/pypi/l/RsMxo.svg
   :target: https://pypi.python.org/pypi/RsMxo/

.. image:: https://img.shields.io/pypi/pyversions/pybadges.svg
   :target: https://img.shields.io/pypi/pyversions/pybadges.svg

.. image:: https://img.shields.io/pypi/dm/RsMxo.svg
   :target: https://pypi.python.org/pypi/RsMxo/

Rohde & Schwarz MXO Seriers Digital Oscilloscopes Driver RsMxo instrument driver.

Basic Hello-World code:

.. code-block:: python

    from RsMxo import *

    instr = RsMxo('TCPIP::192.168.56.101::hislip0', reset=True)
    idn = instr.query_str('*IDN?')
    print('Hello, I am: ' + idn)

Supported instruments: MXO44,MXO58,MXO58C

The package is hosted here: https://pypi.org/project/RsMxo/

Documentation: https://RsMxo.readthedocs.io/

Examples: https://github.com/Rohde-Schwarz/Examples/


Version history
----------------

	Latest release notes summary: Fixed bug, where arguments or return values were wrongly scalar instead of lists.

	Version 2.6.1
		- Fixed bug, where arguments or return values were wrongly scalar instead of lists.

	Version 2.6.0
		- First released version
