Metadata-Version: 2.1
Name: evmosproto
Version: 1.0.4
Summary: Evmos protobuf compiled files.
Home-page: https://github.com/hanchon-live/evmosproto
Author: Hanchon
Author-email: guillermo.paoletti@gmail.com
License: MIT
Description: # Evmos proto
        
        [![PyPI version](https://badge.fury.io/py/evmosproto.svg)](https://badge.fury.io/py/evmosproto) [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/hanchon-live/evmosproto/master.svg)](https://results.pre-commit.ci/latest/github/hanchon-live/evmosproto/master)
        
        Compiled evmos' `protobuf` files ready to use with `python3.9+`.
        
        ## Installation
        
        ```sh
        pip install evmosproto
        ```
        
        ## Usage
        
        ```python
        import grpc
        from evmosproto.cosmos.tx.v1beta1.service_pb2_grpc import ServiceStub
        from evmosproto.cosmos.tx.v1beta1.service_pb2 import BroadcastTxRequest
        channel = grpc.insecure_channel('127.0.0.1:9090')
        stub = ServiceStub(channel)
        
        msg = BroadcastTxRequest()
        
        # Set your msg params...
        
        send = stub.BroadcastTx(msg)
        print(send)
        ```
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.6
Description-Content-Type: text/markdown
