Metadata-Version: 2.4
Name: rsrtx
Version: 5.55.0
Summary: RTO Series 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://rsrtx.readthedocs.io/
Project-URL: Examples, https://github.com/Rohde-Schwarz/Examples/
Keywords: RTO,RTP,RTO6,RTO2000
Classifier: Development Status :: 5 - Production/Stable
Classifier: Topic :: Scientific/Engineering :: Instrument Drivers
Classifier: Programming Language :: Python :: 3
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
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.9
Description-Content-Type: text/x-rst
Requires-Dist: pyvisa>=1.13.0
Requires-Dist: typing-extensions>=4.0.0

==================================
 rsrtx
==================================

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

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

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

.. 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/rsrtx.svg
   :target: https://pypi.python.org/pypi/rsrtx/

Rohde & Schwarz RTO Series Digital Oscilloscopes Driver rsrtx instrument driver.

Basic waveform fetching example:

.. code-block:: python

	from rsrtx import *
	from rsrtx.enums import *

	rto = RsRtx('TCPIP::192.168.2.102::hislip0')
	print('Hello, I am: ' + rto.utilities.idn_string)
	rto.trigger.mode.set(trigger_mode=TriggerMode.AUTO)
	rto.channel.range.set(range_py=10)
	rto.channel.state.set(True)
	print('\nStarting the acquisition ...')
	rto.run.single_and_wait()
	print('... acquisition complete')
	header = rto.channel.waveform.data.header.get()
	print('Waveform:')
	print(f'Time start: {header.Start} s, Time stop: {header.Stop} s')
	waveform = rto.channel.waveform.data.values.get()
	print(f'Record length: {len(waveform)} samples')

	rto.close()



Supported instruments: RTO,RTP

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

Documentation: https://rsrtx.readthedocs.io/

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


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

    Latest release notes summary: First released version

    Version 5.55.0
        - First released version.
