Metadata-Version: 2.1
Name: ha7000d
Version: 0.1.4
Summary: Python interface to Holzworth HA7062D Phase Noise Analyzer
Home-page: https://github.com/l-johnston/ha7000d
Author: Lee Johnston
Author-email: lee.johnston.100@gmail.com
License: MIT
Description: ![Build Status](https://github.com/l-johnston/ha7000d/workflows/publish/badge.svg)
        # `ha7000d`
        Python interface to the Holzworth HA7000D series Phase Noise Analyzer
        
        ## Installation
        ```linux
        $ pip install ha7000d
        ```  
        
        ## Usage
        ```python
        >>> from ha7000d import CommChannel
        >>> import matplotlib.pyplot as plt
        >>> with CommChannel("<ip address>") as pna:
        >>>     x, y = pna.read()
        >>> plt.semilogx(x, y)
        [<matplotlib.lines.Line2D object at ...]
        >>> plt.show()
        >>>
        ```
        
        ## Supported
        - Configuration
        - Acquisition
        - Not supported: LO calibration
        
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
