All Projects â†’ EvaCoop â†’ pyeos_client

EvaCoop / pyeos_client

Licence: MIT license
No description or website provided.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to pyeos client

Tiny.scatter
Scatter compatible eos injection library
Stars: ✭ 31 (+93.75%)
Mutual labels:  eosio
Everipedia
🔗 The Everipedia Network protocol
Stars: ✭ 138 (+762.5%)
Mutual labels:  eosio
Eostracker
🗄EOS Tracker: Real time block explorer for EOS Blockchain
Stars: ✭ 166 (+937.5%)
Mutual labels:  eosio
Scatter
Scatter is an in-browser ( extension ) wallet for EOS which facilitates interaction between users and dapps.
Stars: ✭ 59 (+268.75%)
Mutual labels:  eosio
Eosio Project Boilerplate Simple
This repository demonstrates the eosio platform running a blockchain as a local single node test net with a simple DApp, NoteChain.
Stars: ✭ 134 (+737.5%)
Mutual labels:  eosio
Eos
An open source smart contract platform
Stars: ✭ 11,306 (+70562.5%)
Mutual labels:  eosio
Eosio sql plugin
EOSIO sql database plugin
Stars: ✭ 21 (+31.25%)
Mutual labels:  eosio
Dfuse Eosio
dfuse for EOSIO
Stars: ✭ 180 (+1025%)
Mutual labels:  eosio
Eosio Card Game Repo
The Elemental Battles Tutorial is divided into easy to follow lessons that take you through the process of creating your own fully-functional blockchain-based dApp.
Stars: ✭ 139 (+768.75%)
Mutual labels:  eosio
Awesome Eos
A curated list of EOS Ecosystem by SuperONE.
Stars: ✭ 160 (+900%)
Mutual labels:  eosio
Eos Awesome Contracts
List of open source contracts for EOSIO blockchains
Stars: ✭ 66 (+312.5%)
Mutual labels:  eosio
Eosc
Cross-platform EOSIO command-line swiss-army-knife (EOS, BOS, Telos, Worbli, etc.)
Stars: ✭ 128 (+700%)
Mutual labels:  eosio
Advanced Eos Examples
EOS Smart Contract Development Examples
Stars: ✭ 146 (+812.5%)
Mutual labels:  eosio
Kafka plugin
EOSIO Kafka Plugin is used for building real-time data pipelines and streaming apps. This plugin allows you to utilize all of Kafka’s rich real-time features utilizing the EOS blockchain.
Stars: ✭ 54 (+237.5%)
Mutual labels:  eosio
Eos Bios
DEPRECATED: use `eosc boot` now. Historically: Orchestrator for a decentralized EOS.IO blockchain network boot
Stars: ✭ 173 (+981.25%)
Mutual labels:  eosio
Eos Development
The tutorial of EOS development
Stars: ✭ 28 (+75%)
Mutual labels:  eosio
Cryptokylin Testnet
EOS.io Kylin Testnet by cryptokylin.io
Stars: ✭ 140 (+775%)
Mutual labels:  eosio
Awesome Eos
A curated list of awesome EOS frameworks, libraries, software and resources.
Stars: ✭ 181 (+1031.25%)
Mutual labels:  eosio
Monstereos
A Tamagotchi and Battle Game for EOS Blockchain :)
Stars: ✭ 174 (+987.5%)
Mutual labels:  eosio
Fairy Wallet
Client for ledger nano s hw
Stars: ✭ 154 (+862.5%)
Mutual labels:  eosio

pyeos_client

This is a non official python library build around the eosd Chain & Wallet RPC API. This library will allow you to easily interact with EOSIO node through REST API.

Installation

pip install pyeos-client

Getting Started

from pyeos_client.NodeosConnect import RequestHandlerAPI
from pyeos_client.EOSChainApi import ChainAPI

connection  = RequestHandlerAPI(base_url='http://nodeos-server:8888', headers={"Accept": "application/json"})
chainapi = ChainAPI(connection)
print(chainapi.get_info().json())
results
{
"server_version": "b2eb1667",
"head_block_num": 259590,
"last_irreversible_block_num": 259573,
"head_block_id": "0003f60677f3707f0704f16177bf5f007ebd45eb6efbb749fb1c468747f72046",
"head_block_time": "2017-12-10T17:05:36",
"head_block_producer": "initp",
"recent_slots": "1111111111111111111111111111111111111111111111111111111111111111",
"participation_rate": "1.00000000000000000"
}

Authors

License

This project is licensed under the MIT License - see the LICENSE file for details

Official documentation

Contributing

  • Fork it (https://github.com/EvaCoop/pyeos_client.git)
  • Create your feature branch (git checkout -b feature/fooBar)
  • Commit your changes (git commit -am 'Add some fooBar')
  • Push to the branch (git push origin feature/fooBar)
  • Create a new Pull Request
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].