Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ksiazkowicz committed Apr 22, 2020
1 parent 57deb86 commit 0d73d41
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,23 @@ Async Python library for interacting with EOS.io blockchain.
## Installation

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

## Usage

### Importing a private key

```
```python
from aioeos import EosAccount

account = EosAccount(private_key='your key')
```

### Transferring funds

```
```python
from aioeos import EosJsonRpc, EosTransaction
from aioeos.contracts import eosio_token

Expand All @@ -56,7 +56,7 @@ await rpc.sign_and_push_transaction(transaction, keys=[account.key])

### Creating a new account

```
```python
from aioeos import EosJsonRpc, EosTransaction, EosAuthority
from aioeos.contracts import eosio

Expand Down Expand Up @@ -102,6 +102,6 @@ Docs and usage examples are available [here](https://aioeos.readthedocs.io/en/la

To run unit tests, you need to bootstrap an EOS testnet node first. Use the provided `ensure_eosio.sh` script.

```
```shell
$ ./ensure_eosio.sh
```

0 comments on commit 0d73d41

Please sign in to comment.