Metadata-Version: 2.1
Name: aioeos
Version: 1.0.1
Summary: Async library for interacting with EOS.io blockchain
Home-page: https://ulam.io/
License: MIT
Keywords: blockchain,eos,async,eosio,cryptocurrency
Author: Maciej Janiszewski
Author-email: maciej@ulam.io
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: aiohttp (>=3.3.1,<4.0.0)
Requires-Dist: base58 (==2.0.0)
Requires-Dist: ecdsa (==0.13.3)
Project-URL: Documentation, https://aioeos.readthedocs.io/en/latest/
Project-URL: Repository, https://github.com/ulamlabs/aioeos
Description-Content-Type: text/markdown

# aioeos

[![Documentation Status](https://readthedocs.org/projects/aioeos/badge/?version=latest)](http://aioeos.readthedocs.io/en/latest/?badge=latest) [![codecov](https://codecov.io/gh/ulamlabs/aioeos/branch/master/graph/badge.svg)](https://codecov.io/gh/ulamlabs/aioeos) ![Python package](https://github.com/ulamlabs/aioeos/workflows/Python%20package/badge.svg) ![Upload Python Package](https://github.com/ulamlabs/aioeos/workflows/Upload%20Python%20Package/badge.svg)

Async Python library for interacting with EOS.io blockchain. 

## Features

1. Async JSON-RPC client.
2. Signing and verifying transactions using private and public keys.
3. Serializer for basic EOS.io blockchain ABI types.
4. Helpers which provide an easy way to generate common actions, such as token
   transfer.

## Installation

Library is available on PyPi, you can simply install it using `pip`.
```
$ pip install aioeos
```

## Documentation

Docs and usage examples are available [here](https://aioeos.readthedocs.io/en/latest).
