Metadata-Version: 2.1
Name: bigchaindb-abci
Version: 0.5.1
Summary: Python based ABCI Server for Tendermint
Home-page: https://github.com/davebryson/py-abci
Author: Dave Bryson
License: Apache 2.0
Keywords: blockchain tendermint abci
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.6
Requires-Dist: protobuf (>=3.5.2.post1)
Requires-Dist: gevent (>=1.3a2)
Requires-Dist: colorlog (>=3.1.2)
Requires-Dist: pytest (>=3.5.0)
Requires-Dist: pytest-pythonpath (>=0.7.2)
Requires-Dist: pytest-cov (>=2.5.1)

.. image:: https://travis-ci.org/davebryson/py-abci.svg?branch=master
  :target: https://https://travis-ci.org/davebryson/py-abci

.. image:: https://codecov.io/gh/davebryson/py-abci/branch/master/graph/badge.svg
  :target: https://codecov.io/gh/davebryson/py-abci

.. image:: https://img.shields.io/pypi/v/abci.svg
  :target: https://pypi.python.org/pypi/abci

Build blockchain applications in Python for Tendermint

Version
-------
Supports ABCI v0.12.0 and latest Tendermint

Installation
------------
Requires Python >= 3.6.5

``pip install abci``  OR ``python setup.py install``

Generating Protobuf
-------------------
*ONLY* needed for developing this code base, not to create apps.  If you
just want to create apps, goto Getting Started

1. Install protoc
2. Install go
3. Install gogo protobuf via go
4. Run `make gogo`


Getting Started
---------------
1. Extend the BaseApplication class
2. Implement the Tendermint ABCI callbacks - see https://github.com/tendermint/abci
3. Run it

See the example app ``counter.py`` application under the ``examples`` directory
here: https://github.com/davebryson/py-abci/blob/master/examples/counter.py


