Metadata-Version: 2.1
Name: tekinstr
Version: 1.0.2
Summary: Communication with Tektronix oscilloscopes
Home-page: https://github.com/l-johnston/tekinstr
Author: Lee Johnston
Author-email: lee.johnston.100@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Science/Research
Requires-Dist: numpy
Requires-Dist: sympy
Requires-Dist: unit-system
Requires-Dist: pyvisa

# `tekinstr`


## Installation
```linux
$ pip install tekinstr
```  

## Usage

```python
>>> from tekinstr import CommChannel
>>> with CommChannel("<ip address>") as tek:
...     wf = tek.oscilloscope.read("CH1")
>>> import matplotlib.pyplot as plt
>>> plt.plot(*wf.to_xy())
[<matplotlib.lines.Line2D at ...>]
>>> plt.show()
```  

## Documentation

