Metadata-Version: 2.1
Name: cosmos-sdk
Version: 0.0.0
Summary: The Python SDK for supported Cosmos SDK chains.
Home-page: https://github.com/terra-money/terra.py
License: MIT
Keywords: jigu,blockchain,terra,defi,crypto
Author: Terraform Labs, PTE.
Author-email: engineering@terra.money
Requires-Python: >=3.7,<4.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: aiohttp (>=3.8.1,<4.0.0)
Requires-Dist: attrs (>=21.4.0,<22.0.0)
Requires-Dist: bech32 (>=1.2.0,<2.0.0)
Requires-Dist: betterproto (==2.0.0b4)
Requires-Dist: bip32utils (>=0.3.post4,<0.4)
Requires-Dist: boltons (>=21.0.0,<22.0.0)
Requires-Dist: ecdsa (>=0.17.0,<0.18.0)
Requires-Dist: furl (>=2.1.3,<3.0.0)
Requires-Dist: mnemonic (>=0.19,<0.20)
Requires-Dist: nest-asyncio (>=1.5.4,<2.0.0)
Requires-Dist: osmosis-protobuf (>=0.0.1,<0.0.2)
Requires-Dist: protobuf (>=3.19.1,<4.0.0)
Requires-Dist: terra-proto (==2.1.0)
Requires-Dist: wheel (>=0.37.1,<0.38.0)
Requires-Dist: wrapt (>=1.13.3,<2.0.0)
Project-URL: Documentation, https://terra-money.github.io/terra.py/index.html
Project-URL: Repository, https://github.com/terra-money/terra.py
Description-Content-Type: text/markdown

# Python SDK for the Cosmos Ecosystem

<p><sub>(Unfamiliar with Cosmos?  <a href="https://docs.terra.money/">Check out the Cosmos Network Docs</a>)</sub></p>

This (SDK) in Python is a simple library toolkit for building software that can interact with the supported Cosmos blockchains and provides simple abstractions over core data structures, serialization, key management, and API request generation.

Note - This is currently a W.I.P.

## Features

- This SDK follows a module specific approach, and new Cosmos Modules will be added to the SDK on a priority basis.
- Written in Python with extensive support libraries
- Versatile support for key management solutions

❗ This SDK currently does not support Terra Classic. If you want to communicate with Terra Classic, use terra-sdk==2.x

<br/>

## Requirements

Cosmos.py SDK requires <a href="https://www.python.org/downloads/">Python v3.7+</a>.

## Installation

<sub>**NOTE:** _All code starting with a `$` is meant to run on your terminal (a bash prompt). All code starting with a `>>>` is meant to run in a python interpreter, like <a href="https://pypi.org/project/ipython/">ipython</a>._</sub>

Cosmos SDK can be installed (preferably in a `virtual environment` from PyPI using `pip`) as follows:
  
```
$ pip install -U cosmos.py
```

<sub>_You might have `pip3` installed instead of `pip`; proceed according to your own setup._<sub>


## Dependencies

Cosmos SDK uses <a href="https://python-poetry.org/">Poetry</a> to manage dependencies. To get set up with all the required dependencies, run:

```
$ pip install poetry
$ poetry install
```

If you encounter "version solving failed." error, try `poetry add <package_name>`, followed by `poetry lock` and then `poetry install`


<br/>

# Contributing

Community contribution, whether it's a new feature, correction, bug report, additional documentation, or any other feedback is always welcome. Please read through this section to ensure that your contribution is in the most suitable format for us to effectively process.

<br/>

# License

This reporitory was forked from  <a href="https://github.com/terra-money/terra.py">Cosmos SDK</a> and is being repurposed from there on. 


