evmos-protobuf


Nameevmos-protobuf JSON
Version 0.2.0 PyPI version JSON
download
home_page
SummaryThis package contains a compiled python version of all evmos protobuf files with their dependencies
upload_time2023-03-24 10:25:49
maintainer
docs_urlNone
author
requires_python
licenseBSD 3-Clause License
keywords cosmospy cosmospy-protobuf evmos evmos-protobuf evmospy osmospy proto protobuf
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # evmos Protobuf
This repository contains the whole evmos protobuf files compiled for python and ready to use with grpc. Please use the according .proto file as documentation for each python file.

## Installation

You can install this package directly from the repository by using:
```
python -m pip install evmos-protobuf
```

## Usage

The following code snippet will query the balances for the address ``osmo15hzhcvgs2ljfng6unghvr5l32prwqdyq4aguxn``. The according query.proto file in the bank subdirectory contains the Request and the Response for this request. The details for the response are defined in ``QueryAllBalancesResponse``. It contains the balances and pagination attribute which can be accessed as shown in the example below.  

```python
import grpc
import evmos_protobuf.cosmos.bank.v1beta1.query_pb2_grpc as query_pb2_grpc
import evmos_protobuf.cosmos.bank.v1beta1.query_pb2 as query_pb2

host = "evmos.strange.love"
port = "9090"

c = grpc.insecure_channel(f'{host}:{port}')
stub = query_pb2_grpc.QueryStub(c)

r = stub.AllBalances(query_pb2.QueryAllBalancesRequest(address="osmo15hzhcvgs2ljfng6unghvr5l32prwqdyq4aguxn"))
print(r.balances)

```

## Build yourself
There are two scripts helping you to fork this repository to work with any cosmos based coin.
1. Create a config in ``configs`` and take a existing one as example
2. Run the ``aggregate.py`` file with your filename without ``.json`` (Example ``python aggregate.py cosmos``)
3. Run the ``compile.py`` to compile all your files to protobuf
4. Build your package. You're done!
5. 
## Protobuf compilation 

The files are compiled using the ``grpc_tools.protoc`` command from the [grpcio-tools](https://pypi.org/project/grpcio-tools/) library.
To compile a .proto file manually use following command:
```
python -m grpc_tools.protoc -I <absolute path to project root> --python_out=. --grpc_python_out=. <absolute path to .proto file>
```

After compiling all the files with protoc you need to fix the imports by using [protoletariat](https://github.com/cpcloud/protoletariat)

Note:
* The --grpc_python_out=. is only needed when compiling a query.proto file as these define the actual grpc query
* To compile the whole project it is favorable to match all proto files by using `*.proto` instead of each individual file. You can also match the whole folders to compile multiple folders at the same time. Not that the folders might contain sub-folders.

## Other Cosmos based coins
Currently following coins are maintained by me:
* Cosmos (branch: ``main``)
* evmos (this branch)

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "evmos-protobuf",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "cosmospy,cosmospy-protobuf,evmos,evmos-protobuf,evmospy,osmospy,proto,protobuf",
    "author": "",
    "author_email": "ctrl-felix <dev@ctrl-felix.de>",
    "download_url": "https://files.pythonhosted.org/packages/97/67/a1f221777eeb70bd8f64895827af3ce11ceb8724b2f9184d9e58cfd294d7/evmos_protobuf-0.2.0.tar.gz",
    "platform": null,
    "description": "# evmos Protobuf\nThis repository contains the whole evmos protobuf files compiled for python and ready to use with grpc. Please use the according .proto file as documentation for each python file.\n\n## Installation\n\nYou can install this package directly from the repository by using:\n```\npython -m pip install evmos-protobuf\n```\n\n## Usage\n\nThe following code snippet will query the balances for the address ``osmo15hzhcvgs2ljfng6unghvr5l32prwqdyq4aguxn``. The according query.proto file in the bank subdirectory contains the Request and the Response for this request. The details for the response are defined in ``QueryAllBalancesResponse``. It contains the balances and pagination attribute which can be accessed as shown in the example below.  \n\n```python\nimport grpc\nimport evmos_protobuf.cosmos.bank.v1beta1.query_pb2_grpc as query_pb2_grpc\nimport evmos_protobuf.cosmos.bank.v1beta1.query_pb2 as query_pb2\n\nhost = \"evmos.strange.love\"\nport = \"9090\"\n\nc = grpc.insecure_channel(f'{host}:{port}')\nstub = query_pb2_grpc.QueryStub(c)\n\nr = stub.AllBalances(query_pb2.QueryAllBalancesRequest(address=\"osmo15hzhcvgs2ljfng6unghvr5l32prwqdyq4aguxn\"))\nprint(r.balances)\n\n```\n\n## Build yourself\nThere are two scripts helping you to fork this repository to work with any cosmos based coin.\n1. Create a config in ``configs`` and take a existing one as example\n2. Run the ``aggregate.py`` file with your filename without ``.json`` (Example ``python aggregate.py cosmos``)\n3. Run the ``compile.py`` to compile all your files to protobuf\n4. Build your package. You're done!\n5. \n## Protobuf compilation \n\nThe files are compiled using the ``grpc_tools.protoc`` command from the [grpcio-tools](https://pypi.org/project/grpcio-tools/) library.\nTo compile a .proto file manually use following command:\n```\npython -m grpc_tools.protoc -I <absolute path to project root> --python_out=. --grpc_python_out=. <absolute path to .proto file>\n```\n\nAfter compiling all the files with protoc you need to fix the imports by using [protoletariat](https://github.com/cpcloud/protoletariat)\n\nNote:\n* The --grpc_python_out=. is only needed when compiling a query.proto file as these define the actual grpc query\n* To compile the whole project it is favorable to match all proto files by using `*.proto` instead of each individual file. You can also match the whole folders to compile multiple folders at the same time. Not that the folders might contain sub-folders.\n\n## Other Cosmos based coins\nCurrently following coins are maintained by me:\n* Cosmos (branch: ``main``)\n* evmos (this branch)\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause License",
    "summary": "This package contains a compiled python version of all evmos protobuf files with their dependencies",
    "version": "0.2.0",
    "split_keywords": [
        "cosmospy",
        "cosmospy-protobuf",
        "evmos",
        "evmos-protobuf",
        "evmospy",
        "osmospy",
        "proto",
        "protobuf"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c7a3a39a2d8af57868d022cd451f49ce4965c6a359a8ed31d9e105c28a775ad",
                "md5": "8336f0f05f57c39b8f4ddf178e1d5c4a",
                "sha256": "5b0a7d5e40654ea1c58a22cbc6ebf6417ebd7ac35b3538470533dd8edb444f91"
            },
            "downloads": -1,
            "filename": "evmos_protobuf-0.2.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8336f0f05f57c39b8f4ddf178e1d5c4a",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 745457,
            "upload_time": "2023-03-24T10:25:21",
            "upload_time_iso_8601": "2023-03-24T10:25:21.065519Z",
            "url": "https://files.pythonhosted.org/packages/5c/7a/3a39a2d8af57868d022cd451f49ce4965c6a359a8ed31d9e105c28a775ad/evmos_protobuf-0.2.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9767a1f221777eeb70bd8f64895827af3ce11ceb8724b2f9184d9e58cfd294d7",
                "md5": "c47cfc5e2ed0d6ebc6ed42a621a223ff",
                "sha256": "fcd6e96f18f786c2602af87f239eacdbb3a5e2941d07cbb3d1040d2eb945dc63"
            },
            "downloads": -1,
            "filename": "evmos_protobuf-0.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "c47cfc5e2ed0d6ebc6ed42a621a223ff",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 25970175,
            "upload_time": "2023-03-24T10:25:49",
            "upload_time_iso_8601": "2023-03-24T10:25:49.503497Z",
            "url": "https://files.pythonhosted.org/packages/97/67/a1f221777eeb70bd8f64895827af3ce11ceb8724b2f9184d9e58cfd294d7/evmos_protobuf-0.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-24 10:25:49",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "evmos-protobuf"
}
        
Elapsed time: 0.06557s