Metadata-Version: 2.1
Name: tekinstr
Version: 1.0.13
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
Description: # `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
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Science/Research
Description-Content-Type: text/markdown
