Metadata-Version: 2.1
Name: ueosio
Version: 0.0.2
Summary: uEOSIO python library
Home-page: https://github.com/AntarticaLabs/ueosio
Author: Matias Romeo
Author-email: matias.romeo@gmail.com
Requires-Python: >=3.6,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: base58 (>=2.0.0,<3.0.0)
Requires-Dist: cryptos (>=1.36,<2.0)
Requires-Dist: requests (>=2.23.0,<3.0.0)
Project-URL: Repository, https://github.com/AntarticaLabs/ueosio
Description-Content-Type: text/markdown

# µEOSIO
**General purpose library for the EOSIO blockchains**

Micro EOSIO allows you to interact with any EOSio chain using Python.

# Install

    pip install ueosio

# Build from source

    git clone https://github.com/AntarticaLabs/ueosio
    cd ueosio
    python3 -m venv venv
    source venv/bin/activate
    pip install -r examples/requirements.txt

### Examples:

[tx.py](https://github.com/AntarticaLabs/ueosio/blob/master/examples/tx.py): Send a transaction on any given chain.

[keys.py](https://github.com/AntarticaLabs/ueosio/blob/master/examples/keys.py): Generate a key pair or get the public key of any given private key.

[approve_multisig.py](https://github.com/AntarticaLabs/ueosio/blob/master/examples/approve_multisig.py): Approve a multisig transaction.

[create_account.py](https://github.com/AntarticaLabs/ueosio/blob/master/examples/create_account.py): Create an account, buy ram and delegate bandwidth and CPU.

_____


[MIT License](LICENSE) \
Copyright (c) 2020 AntarticaLabs

