Metadata-Version: 1.1
Name: abci
Version: 0.3.0
Summary: Python based ABCI Server for Tendermint
Home-page: https://github.com/davebryson/py-abci
Author: Dave Bryson
Author-email: UNKNOWN
License: Apache 2.0
Description: .. 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
        
        Installation
        ------------
        Requires Python 3.6
        
        ``pip install abci``  OR
        
        ``python setup.py install``
        
        OR using PipEnv (http://docs.pipenv.org/en/latest/)
        
        ``git clone https://github.com/davebryson/py-abci``
        
        ``cd py-abci``
        
        ``pipenv --three # for a python 3 virtualenv``
        
        ``pipenv install``
        
        
        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
        
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
