Python library for the eos.io REST API
Project description
eospy library
This library is still a work in progress but currently has the ability to perform all cleos get
functions without compiling the code.
The library now supports signing transactions/key creation for both python 2.7 and 3.x. This is the first iteration and is very rough. The key creation has not been tested fully and should be used at your own risk.
The commands currently implemented.
Subcommands:
get
info Get current blockchain information
block Retrieve a full block from the blockchain
account Retrieve an account from the blockchain
code Retrieve the code and ABI for an account
abi Retrieve the ABI for an account
table Retrieve the contents of a database table
currency Retrieve information related to standard currencies
accounts Retrieve accounts associated with a public key
servants Retrieve accounts which are servants of a given account
transaction Retrieve a transaction from the blockchain
actions Retrieve all actions with specific account name referenced in authorization or receiver
push
action Push a transaction with a single action
system
newaccount Create an account, buy ram, stake for bandwidth for the account
This library is very much a work in progress.
Installation
Linux
# create virtual environment
mkdir -p ~/envs/eospy
virtualenv ~/envs/eospy
# activate the environment
source ~/envs/eospy/bin/activate
# install from github
# look [here](https://github.com/eosnewyork/eospy/releases) for the latest release.
pip install git+https://github.com/eosnewyork/eospy.git@<release>
# install the library from pip
pip install libeospy
Windows
-
Install python You can use either Python 2.7 or 3.7 however we suggest python 3.7 as we have tested that version more thoroughly. https://www.howtogeek.com/197947/how-to-install-python-on-windows/ Python 2.7 Python 3.7
-
Install git https://www.atlassian.com/git/tutorials/install-git
-
Install eospy. Look here for the latest release number.
# install from github
# pip install git+https://github.com/eosnewyork/eospy.git@<release>
pip install git+https://github.com/eosnewyork/eospy.git@v1.1.8
# install from pip
pip install libeospy
API Endpoints
For a more complete list of API endpoints check out:
https://www.eosdocs.io/resources/apiendpoints/
Command line Tool Examples
# Get chain information
pycleos --url https://api.eosnewyork.io get info
# get information about a block
pycleos --url https://api.eosnewyork.io get block 447
# Retrieve an account from the blockchain
pycleos --url https://api.eosnewyork.io get account --account eosio
# Retrieve the code and ABI for an account
pycleos --url https://api.eosnewyork.io get code --account eosio
# Retrieve the ABI for an account
pycleos --url https://api.eosnewyork.io get abi --account eosio
# Retrieve the contents of a database table
pycleos --url https://api.eosnewyork.io get table --code eosio --scope eosio --table producers
# Retrive currency information
pycleos --url https://api.eosnewyork.io get currency balance --code eosio.token --symbol EOS --account aaaaaaaaaaaa
pycleos --url https://api.eosnewyork.io get currency stats --code eosio.token --symbol EOS
# get accounts associated with public key
pycleos --url https://api.eosnewyork.io get accounts --key EOS52gpRqAPfggYHLXbMuC4TSQd8WWWo94KrMq4umgUcjM62Y2dWF
# get transaction information
pycleos --url https://api.eosnewyork.io get transaction --transaction 42dacd5722001b734be46a2140917e06cd21d42425f927f506c07b4388b07f62
# get account actions
pycleos --url https://api.eosnewyork.io get actions --account aaaaaaaaaaaa
Examples
Check out the examples directory for some examples of how to use the library
Testeos
Coming soon...
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.