Metadata-Version: 2.4
Name: intermod-metronomo
Version: 1.1.0
Summary: Python API for the Metronomo hardware
Project-URL: Homepage, https://intermod.pro/products/metronomo
Project-URL: Documentation, https://intermod.pro/manuals/metronomo/
Project-URL: Repository, https://github.com/intermod-pro/metronomo-api
Project-URL: Changelog, https://intermod.pro/manuals/metronomo/CHANGELOG.html
Author-email: Intermodulation Products AB <support@intermod.pro>
License-Expression: MIT
License-File: LICENSE
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Instrument Drivers
Requires-Python: >=3.10
Requires-Dist: cryptography>=43.0.0
Requires-Dist: grpcio>=1.66.0
Requires-Dist: paramiko>=3.5.1
Requires-Dist: protobuf>=5.27.2
Description-Content-Type: text/markdown

# Metronomo

Python API to interact with the Metronomo hardware.

## Quickstart

Install from PyPI using `pip`:
```
python -m pip install intermod-metronomo
```

Control your Metronomo unit from Python using `metronomo.Metronomo`:
```python
from metronomo import Metronomo

with Metronomo("172.23.40.1") as mtr:
    mtr.set_ref_internal()
    mtr.set_out_clk_freq(100e6)
    mtr.sync_out()
```

## Documentation
See the [online documentation](https://intermod.pro/manuals/metronomo/) for setup and installation instruction and for the API reference.
