Metadata-Version: 2.1
Name: umipy
Version: 1.2.1
Summary: api wrapper for umi.top crypto
Home-page: https://github.com/kesha1225/PyUmi
License: MIT
Keywords: umi,crypto,api,wrapper
Author: kesha1225
Requires-Python: >=3.11,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: PyNaCl (>=1.5.0,<2.0.0)
Requires-Dist: aiohttp (>=3.10.3,<4.0.0)
Requires-Dist: mnemonic (>=0.21,<0.22)
Requires-Dist: pydantic (>=2.4.2,<3.0.0)
Project-URL: Repository, https://github.com/kesha1225/PyUmi
Description-Content-Type: text/markdown

# UMIPY
[![codecov](https://codecov.io/github/kesha1225/PyUmi/graph/badge.svg?token=PZ12EHSKAH)](https://codecov.io/github/kesha1225/PyUmi)

Interaction with umi blockchain


### Install

for stable version

`pip install umipy`

for dev version

`pip install https://github.com/RoyFractal/PyUmi/archive/master.zip` 


### Usage

You can find more examples - [examples/](examples/)

#### simple getting a address data

```python3
import asyncio

from umipy import UmiPy


async def main():
    umi = UmiPy()
    balance = await umi.get_balance(
        "umi17ymaed9h9hq7s5pc2f5fhmlzpmsk3qtc6g2cgm360zysz0uvq44qnxlsuz"
    )
    print(balance)

    trans = await umi.get_transactions(
        "umi17ymaed9h9hq7s5pc2f5fhmlzpmsk3qtc6g2cgm360zysz0uvq44qnxlsuz"
    )
    print(trans)

    await umi.close()


asyncio.run(main())
```

