Metadata-Version: 2.1
Name: tm-abci
Version: 0.6.1
Summary: Python based ABCI Server for Tendermint
Home-page: https://github.com/SoftblocksCo/py-abci
Author: SoftblocksCo
License: Apache 2.0
Description: 
        Build blockchain applications in Python for Tendermint
        
        Version
        -------
        Supports ABCI v0.14.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. Update all .proto files (protobuf dir)
        2. Install protoc
        3. Install go
        4. Install gogo protobuf via go
        5. Run `make gogo`
        
        Or using Docker container:
        
        1. Update all .proto files (protobuf dir)
        2. Build image:``sudo docker build -t ABCIdev .``
        3. Run container: ``sudo docker run -it ABCIdev sh``
        4. Inside container run: ``make gogo`` and ``mv abci/protobuf/types_pb2.py abci/types_pb2.py``
        
        
        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/SoftblocksCo/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
Requires-Python: >=3.6
Description-Content-Type: text/x-rst
