Metadata-Version: 2.1
Name: amtFMC
Version: 0.0.3
Summary: Amtery Python library for FMC5030.
Author-email: yingju <yingju.chen@hxltd.com>
Maintainer: Amtery
Maintainer-email: yingju <yingju.chen@hxltd.com>
License: MIT License
Project-URL: Homepage, https://www.amtery.com/en
Project-URL: Documentation, https://github.com/yjchenhx/amtFMC_examples
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: paramiko
Requires-Dist: pyadi-iio<=0.0.16
Requires-Dist: pylibiio<=0.25
Requires-Dist: numpy
Provides-Extra: examples
Requires-Dist: thread6; extra == "examples"
Requires-Dist: matplotlib; extra == "examples"
Requires-Dist: scipy; extra == "examples"

##### amtFMC:  Amtery python library for FMC5030

amtFMC is a Python library provided to remotely control FMC5030. The program is executed in an external host computer. With this method, python programs can control the tuner and AD9364 simultaneously.

To Startup, run the lines below. For more details, please refer to the examples (see [Documentation](https://github.com/yjchenhx/amtFMC_examples/tree/main) or visit the [Homepage](https://www.amtery.com/en). 

```python
import amtFMC as fmc

# Reset and initialize FMC5030 through SSH.
fmc.amtFmcRfReset(ip, port, username, password)
```

##### Dependencies

* [LibIIO <= 0.25](https://github.com/analogdevicesinc/libiio/releases/tag/v0.25)

* [PyADI-IIO <= 0.0.16](https://pypi.org/project/pyadi-iio/)

* [Paramiko](https://pypi.org/project/paramiko/)

* [NumPy](https://pypi.org/project/numpy/)

##### Installing from pip

```powershell
pip install amtFMC
```

##### Installing from source

Download the file on the Homepage.

```powershell
# unzip the file to a specific path
7z x "amtFMC.zip" -o"C:\Program Files\"
cd C:\Program Files\amtFMC
pip install amtFMC-0.0.1-py3-none-any.whl 
```
