<br/>
<br/>
<div align="center"> <p > <img src="https://img.binodes.com/i/2025/03/23/67dfce5dd9f25.png" width=500 alt="py-sdk-logo"></p>
The Python SDK for Terra Classic Data Analysis
<br/>
<p><sub>(Unfamiliar with Terra? <a href="https://www.binodes.com/endpoints/terra">Check out the Terra Docs</a>)</sub></p>
<p > <img alt="GitHub" src="https://img.shields.io/github/license/terra-money/terra-sdk-python">
<img alt="Python" src="https://img.shields.io/pypi/pyversions/terra-sdk">
<img alt="pip" src="https://img.shields.io/pypi/v/terra-sdk"></p>
<p>
<a href="https://terra-money.github.io/terra.py/index.html"><strong>Explore the Docs »</strong></a>
<br/>
<a href="https://pypi.org/project/terra-classic-data-analysis-sdk/">PyPI Package</a>
·
<a href="https://github.com/BInodes-official/terra.py">GitHub Repository</a>
</p></div>
The Terra Classic Data Analysis Software Development Kit (SDK) not only possesses the functions of a basic SDK but also specifically enhances the on - chain historical data tracing and data analysis functions.
## Features
- **Basic SDK**: Inherit all the LCD query、Tx transaction from the basic SDK and maintain updates.
- **Data Analysis**: Enhanced the on-chain data analysis function, providing aggregation interfaces for historical data tracing and display of pre - processed results.
- **BUG Fixed**: Since validators have the greatest stake in the development of the Terra chain, they actively fix bugs and add features. Currently, the [Binodes](https://validator.info/terra-classic/terravaloper1s2xpff7mj6jpxfyhr7pe25vt8puvgj4wy0tzjx) validator is the main maintainer.
## Recent changes
### V0.2.0 (2025-07-12)
feat(auth): add ModuleAccount and update related components
- Add ModuleAccount import in auth/data/__init__.py- Update Account class to handle ModuleAccount type
- Add to_data method in DenomTrace class
- Implement denom_traces method in IbcTransferAPI
### V0.1.9 (2025-06-26)
refactor(core): implement parameter and proposal types for distribution, staking and tax modules
- Add Params classes for distribution, staking and tax modules
- Implement MsgUpdateParams proposal types for each module
- Update base account and public key serialization methods
- Refactor SendAuthorization data handling
### V0.1.8 (2025-05-28)
refactor(lcd): remove unused code and fix validators params, update parse abount wasm
- Delete redundant validators and bonded_validators methods in staking.py
- Add new validators and bonded_validators methods with correct pagination parameters
- Update parse_msg function in wasm/msgs.py to handle list type
### V0.1.7 (2025-05-20)
feat(gov): update MsgSubmitProposal to include metadata and simplify proposal content handling
- Add messages, title, summary, and metadata fields to MsgSubmitProposal
- Implement try_json_loads function to handle metadata parsing
- Simplify proposal content handling by removing parse_content and parse_content_proto
- Update related modules to use new MsgSubmitProposal structure- Remove unused @type field from Plan.to_data() method
### V0.1.6 (2025-05-19)
refactor(gov): update proposal handling for v0.47
- Rename Content to ProposalMsg
- Update Proposal data structure to use ProposalMsg- Modify MsgSubmitProposal to use ProposalMsg
- Update LCD API to use new proposal structure
- Rename parse_content to parse_proposal_msg
- Update related proposals in distribution and wasm modules
## 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>
Terra SDK can be installed (preferably in a `virtual environment` from PyPI using `pip`) as follows:
Upgrade the SDK:
```
$ pip install -U terra-classic-data-analysis-sdk
```
<sub>_You might need to run pip via ```python -m pip install -U terra-classic-data-analysis-sdk```. Additionally, you might have `pip3` installed instead of `pip`; proceed according to your own setup._<sub>
# Table of Contents
- [API Reference](#api-reference)
- [Getting Started](#getting-started)
- [Requirements](#requirements)
- [Installation](#installation)
- [Dependencies](#dependencies)
- [Tests](#tests)
- [Code Quality](#code-quality)
- [Usage Examples](#usage-examples)
- [Getting Blockchain Information](#getting-blockchain-information)
- [Async Usage](#async-usage)
- [Building and Signing Transactions](#building-and-signing-transactions)
- [Example Using a Wallet](#example-using-a-wallet-recommended)
- [Contributing](#contributing)
- [Reporting an Issue](#reporting-an-issue)
- [Requesting a Feature](#requesting-a-feature)
- [Contributing Code](#contributing-code)
- [Documentation Contributions](#documentation-contributions)
- [License](#license)
<br/>
# API Reference
An intricate reference to the APIs on the Terra SDK can be found <a href="https://terra-money.github.io/terra.py/index.html">here</a>.
<br/>
# Getting Started
A walk-through of the steps to get started with the Terra SDK alongside a few use case examples are provided below. Alternatively, a tutorial video is also available <a href="https://www.youtube.com/watch?v=GfasBlJHKIg">here</a> as reference.
## Requirements
Terra Classic SDK requires <a href="https://www.python.org/downloads/">Python v3.7+</a>.
# Usage Examples
One line of code to query the maximum block height on the current blockchain:
```python
>>> from terra_classic_sdk.client.lcd import LCDClient
>>> LCDClient().tendermint.block_info()['block']['header']['height']
```
`'1687543'`
Notice:User-defined LCD and CHAIN are still supported, and the usage inherits from the underlying basic SDK capabilities.
### Async Usage
If you want to make asynchronous, non-blocking LCD requests, you can use AsyncLCDClient. The interface is similar to LCDClient, except the module and wallet API functions must be awaited.
```python
>>> import asyncio
>>> from terra_classic_sdk.client.lcd import AsyncLCDClient
>>> async def main():
terra = AsyncLCDClient()
total_supply = await terra.bank.total()
print(total_supply)
await terra.session.close # you must close the session
>>> asyncio.get_event_loop().run_until_complete(main())
```
## Building and Signing Transactions
If you wish to perform a state-changing operation on the Terra Classic blockchain such as sending tokens, swapping assets, withdrawing rewards, or even invoking functions on smart contracts, you must create a **transaction** and broadcast it to the network.
Terra Classic SDK provides functions that help create StdTx objects.
### Example Using a Wallet (_recommended_)
A `Wallet` allows you to create and sign a transaction in a single step by automatically fetching the latest information from the blockchain (chain ID, account number, sequence).
Use `LCDClient.wallet()` to create a Wallet from any Key instance. The Key provided should correspond to the account you intend to sign the transaction with.
<sub>**NOTE:** *If you are using MacOS and got an exception 'bad key length' from MnemonicKey, please check your python implementation. if `python3 -c "import ssl; print(ssl.OPENSSL_VERSION)"` returns LibreSSL 2.8.3, you need to reinstall python via pyenv or homebrew.*</sub>
```python
>>> from terra_classic_sdk.client.lcd import LCDClient
>>> from terra_classic_sdk.key.mnemonic import MnemonicKey
# Fill in the mnemonic phrase of your wallet. A better practice is to set it as a system variable and read it.
>>> key = MnemonicKey(
mnemonic="sport oppose usual cream task benefit canvas xxxxxxxxxxxxxxxxxx")
# Init wallet
>>> wallet = LCDClient().wallet(key=key)
```
Once you have your Wallet, you can simply create a StdTx using `Wallet.create_and_sign_tx`.
```python
>>> from terra_classic_sdk.core.bank import MsgSend
>>> from terra_classic_sdk.client.lcd.api.tx import CreateTxOptions
>>> tx = wallet.create_and_sign_tx(CreateTxOptions(
msgs=[MsgSend(
"terra1drs4gul908c59638gu9s88mugdnujdprjhtu7n", # Sender
'terra1s2xpff7mj6jpxfyhr7pe25vt8puvgj4wyq8lz4', # Receiver
"1000000uluna" # send 1 lunc
)],
memo="test transaction!",
gas_adjustment=1.2, # Auto fee, can be increased during peak periods.
# fee=Fee(240324,'7023928uluna'), # Set the fees manually if you need
))
```
You should now be able to broadcast your transaction to the network.
```python
>>> result = LCDClient().tx.broadcast(tx)
>>> print(result)
```
<br/>
## Dependencies
Terra Classic 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
```
## Tests
Terra Classic SDK provides extensive tests for data classes and functions. To run them, after the steps in [Dependencies](#dependencies):
```
$ make test
```
## Code Quality
Terra Classic SDK uses <a href="https://black.readthedocs.io/en/stable/">Black</a>, <a href="https://isort.readthedocs.io/en/latest/">isort</a>, and <a href="https://mypy.readthedocs.io/en/stable/index.html">Mypy</a> for checking code quality and maintaining style. To reformat, after the steps in [Dependencies](#dependencies):
```
$ make qa && make format
```
<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/>
## Reporting an Issue
First things first: **Do NOT report security vulnerabilities in public issues!** Please disclose responsibly by submitting your findings to the [Terra Bugcrowd submission form](https://github.com/BInodes-official/terra.py). The issue will be assessed as soon as possible.
If you encounter a different issue with the Python SDK, check first to see if there is an existing issue on the <a href="https://github.com/BInodes-official/terra.py/issues">Issues</a> page, or if there is a pull request on the <a href="https://github.com/BInodes-official/terra.py/pulls">Pull requests</a> page. Be sure to check both the Open and Closed tabs addressing the issue.
If there isn't a discussion on the topic there, you can file an issue. The ideal report includes:
- A description of the problem / suggestion.
- How to recreate the bug.
- If relevant, including the versions of your:
- Python interpreter
- Terra SDK
- Optionally of the other dependencies involved
- If possible, create a pull request with a (failing) test case demonstrating what's wrong. This makes the process for fixing bugs quicker & gets issues resolved sooner.
</br>
## Requesting a Feature
If you wish to request the addition of a feature, please first check out the <a href="https://github.com/BInodes-official/terra.py/issues">Issues</a> page and the <a href="https://github.com/BInodes-official/terra.py/pulls">Pull requests</a> page (both Open and Closed tabs). If you decide to continue with the request, think of the merits of the feature to convince the project's developers, and provide as much detail and context as possible in the form of filing an issue on the <a href="https://github.com/BInodes-official/terra.py/issues">Issues</a> page.
<br/>
## Contributing Code
If you wish to contribute to the repository in the form of patches, improvements, new features, etc., first scale the contribution. If it is a major development, like implementing a feature, it is recommended that you consult with the developers of the project before starting the development to avoid duplicating efforts. Once confirmed, you are welcome to submit your pull request.
</br>
### For new contributors, here is a quick guide:
1. Fork the repository.
2. Build the project using the [Dependencies](#dependencies) and [Tests](#tests) steps.
3. Install a <a href="https://virtualenv.pypa.io/en/latest/index.html">virtualenv</a>.
4. Develop your code and test the changes using the [Tests](#tests) and [Code Quality](#code-quality) steps.
5. Commit your changes (ideally follow the <a href="https://github.com/angular/angular/blob/master/CONTRIBUTING.md#commit">Angular commit message guidelines</a>).
6. Push your fork and submit a pull request to the repository's `main` branch to propose your code.
A good pull request:
- Is clear and concise.
- Works across all supported versions of Python. (3.7+)
- Follows the existing style of the code base (<a href="https://pypi.org/project/flake8/">`Flake8`</a>).
- Has comments included as needed.
- Includes a test case that demonstrates the previous flaw that now passes with the included patch, or demonstrates the newly added feature.
- Must include documentation for changing or adding any public APIs.
- Must be appropriately licensed (MIT License).
</br>
## Documentation Contributions
Documentation improvements are always welcome. The documentation files live in the [docs](./docs) directory of the repository and are written in <a href="https://docutils.sourceforge.io/rst.html">reStructuredText</a> and use <a href="https://www.sphinx-doc.org/en/master/">Sphinx</a> to create the full suite of documentation.
</br>
When contributing documentation, please do your best to follow the style of the documentation files. This means a soft limit of 88 characters wide in your text files and a semi-formal, yet friendly and approachable, prose style. You can propose your improvements by submitting a pull request as explained above.
### Need more information on how to contribute?
You can give this <a href="https://opensource.guide/how-to-contribute/#how-to-submit-a-contribution">guide</a> read for more insight.
<br/>
# License
This software is licensed under the MIT license. See [LICENSE](./LICENSE) for full disclosure.
<hr/>
<p> </p>
<p align="center">
<a href="https://terra.money/"><img src="https://assets.website-files.com/611153e7af981472d8da199c/61794f2b6b1c7a1cb9444489_symbol-terra-blue.svg" alt="Terra-logo" width=200/></a>
<div align="center">
<sub><em>Powering the innovation of money.</em></sub>
</div>
Raw data
{
"_id": null,
"home_page": null,
"name": "terra-classic-data-analysis-sdk",
"maintainer": null,
"docs_url": null,
"requires_python": "<4.0,>=3.10",
"maintainer_email": null,
"keywords": "terra, terra classic, lunc, lunc sdk, terra.py, terra sdk, luna classic, luna classic sdk, lunc sdk, lunc analysis, terra analysis, terra classic analysis, lunc data, terra data, terra classic data",
"author": "Binodes",
"author_email": "postmaster@binodes.com",
"download_url": "https://files.pythonhosted.org/packages/7c/ac/4f4c3d8b683556bc2a83c3fa8aaf094b94837583fc022ee7fdf003979309/terra_classic_data_analysis_sdk-0.2.0.tar.gz",
"platform": null,
"description": "<br/>\n<br/>\n\n<div align=\"center\"> <p > <img src=\"https://img.binodes.com/i/2025/03/23/67dfce5dd9f25.png\" width=500 alt=\"py-sdk-logo\"></p>\n\nThe Python SDK for Terra Classic Data Analysis\n<br/>\n\n<p><sub>(Unfamiliar with Terra? <a href=\"https://www.binodes.com/endpoints/terra\">Check out the Terra Docs</a>)</sub></p>\n\n <p > <img alt=\"GitHub\" src=\"https://img.shields.io/github/license/terra-money/terra-sdk-python\">\n<img alt=\"Python\" src=\"https://img.shields.io/pypi/pyversions/terra-sdk\">\n <img alt=\"pip\" src=\"https://img.shields.io/pypi/v/terra-sdk\"></p>\n<p>\n <a href=\"https://terra-money.github.io/terra.py/index.html\"><strong>Explore the Docs \u00bb</strong></a>\n<br/>\n <a href=\"https://pypi.org/project/terra-classic-data-analysis-sdk/\">PyPI Package</a>\n \u00b7\n <a href=\"https://github.com/BInodes-official/terra.py\">GitHub Repository</a>\n</p></div>\n\nThe Terra Classic Data Analysis Software Development Kit (SDK) not only possesses the functions of a basic SDK but also specifically enhances the on - chain historical data tracing and data analysis functions.\n\n## Features\n\n- **Basic SDK**: Inherit all the LCD query\u3001Tx transaction from the basic SDK and maintain updates.\n\n- **Data Analysis**: Enhanced the on-chain data analysis function, providing aggregation interfaces for historical data tracing and display of pre - processed results.\n\n- **BUG Fixed**: Since validators have the greatest stake in the development of the Terra chain, they actively fix bugs and add features. Currently, the [Binodes](https://validator.info/terra-classic/terravaloper1s2xpff7mj6jpxfyhr7pe25vt8puvgj4wy0tzjx) validator is the main maintainer.\n\n\n## Recent changes\n### V0.2.0 (2025-07-12)\nfeat(auth): add ModuleAccount and update related components\n\n- Add ModuleAccount import in auth/data/__init__.py- Update Account class to handle ModuleAccount type\n- Add to_data method in DenomTrace class\n- Implement denom_traces method in IbcTransferAPI\n\n### V0.1.9 (2025-06-26)\nrefactor(core): implement parameter and proposal types for distribution, staking and tax modules\n\n- Add Params classes for distribution, staking and tax modules\n- Implement MsgUpdateParams proposal types for each module\n- Update base account and public key serialization methods\n- Refactor SendAuthorization data handling\n\n### V0.1.8 (2025-05-28)\nrefactor(lcd): remove unused code and fix validators params, update parse abount wasm\n\n- Delete redundant validators and bonded_validators methods in staking.py\n- Add new validators and bonded_validators methods with correct pagination parameters\n- Update parse_msg function in wasm/msgs.py to handle list type\n### V0.1.7 (2025-05-20)\nfeat(gov): update MsgSubmitProposal to include metadata and simplify proposal content handling\n\n- Add messages, title, summary, and metadata fields to MsgSubmitProposal\n- Implement try_json_loads function to handle metadata parsing\n- Simplify proposal content handling by removing parse_content and parse_content_proto\n- Update related modules to use new MsgSubmitProposal structure- Remove unused @type field from Plan.to_data() method\n\n### V0.1.6 (2025-05-19)\nrefactor(gov): update proposal handling for v0.47\n\n- Rename Content to ProposalMsg\n- Update Proposal data structure to use ProposalMsg- Modify MsgSubmitProposal to use ProposalMsg\n- Update LCD API to use new proposal structure\n- Rename parse_content to parse_proposal_msg\n- Update related proposals in distribution and wasm modules\n\n## Installation\n\n<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>\n\nTerra SDK can be installed (preferably in a `virtual environment` from PyPI using `pip`) as follows:\n\nUpgrade the SDK:\n```\n$ pip install -U terra-classic-data-analysis-sdk\n```\n\n<sub>_You might need to run pip via ```python -m pip install -U terra-classic-data-analysis-sdk```. Additionally, you might have `pip3` installed instead of `pip`; proceed according to your own setup._<sub>\n\n\n# Table of Contents\n\n- [API Reference](#api-reference)\n- [Getting Started](#getting-started)\n - [Requirements](#requirements)\n - [Installation](#installation)\n - [Dependencies](#dependencies)\n - [Tests](#tests)\n - [Code Quality](#code-quality)\n- [Usage Examples](#usage-examples)\n - [Getting Blockchain Information](#getting-blockchain-information)\n - [Async Usage](#async-usage)\n - [Building and Signing Transactions](#building-and-signing-transactions)\n - [Example Using a Wallet](#example-using-a-wallet-recommended)\n- [Contributing](#contributing)\n - [Reporting an Issue](#reporting-an-issue)\n - [Requesting a Feature](#requesting-a-feature)\n - [Contributing Code](#contributing-code)\n - [Documentation Contributions](#documentation-contributions)\n- [License](#license)\n\n<br/>\n\n# API Reference\n\nAn intricate reference to the APIs on the Terra SDK can be found <a href=\"https://terra-money.github.io/terra.py/index.html\">here</a>.\n\n<br/>\n\n# Getting Started\n\nA walk-through of the steps to get started with the Terra SDK alongside a few use case examples are provided below. Alternatively, a tutorial video is also available <a href=\"https://www.youtube.com/watch?v=GfasBlJHKIg\">here</a> as reference.\n\n## Requirements\n\nTerra Classic SDK requires <a href=\"https://www.python.org/downloads/\">Python v3.7+</a>.\n\n\n# Usage Examples\n\nOne line of code to query the maximum block height on the current blockchain\uff1a\n\n```python\n>>> from terra_classic_sdk.client.lcd import LCDClient\n\n>>> LCDClient().tendermint.block_info()['block']['header']['height']\n```\n\n`'1687543'`\n\nNotice\uff1aUser-defined LCD and CHAIN are still supported, and the usage inherits from the underlying basic SDK capabilities.\n\n### Async Usage\n\nIf you want to make asynchronous, non-blocking LCD requests, you can use AsyncLCDClient. The interface is similar to LCDClient, except the module and wallet API functions must be awaited.\n\n```python\n>>> import asyncio \n>>> from terra_classic_sdk.client.lcd import AsyncLCDClient\n\n>>> async def main():\n terra = AsyncLCDClient()\n total_supply = await terra.bank.total()\n print(total_supply)\n await terra.session.close # you must close the session\n\n>>> asyncio.get_event_loop().run_until_complete(main())\n```\n\n## Building and Signing Transactions\n\nIf you wish to perform a state-changing operation on the Terra Classic blockchain such as sending tokens, swapping assets, withdrawing rewards, or even invoking functions on smart contracts, you must create a **transaction** and broadcast it to the network.\nTerra Classic SDK provides functions that help create StdTx objects.\n\n### Example Using a Wallet (_recommended_)\n\nA `Wallet` allows you to create and sign a transaction in a single step by automatically fetching the latest information from the blockchain (chain ID, account number, sequence).\n\nUse `LCDClient.wallet()` to create a Wallet from any Key instance. The Key provided should correspond to the account you intend to sign the transaction with.\n\n<sub>**NOTE:** *If you are using MacOS and got an exception 'bad key length' from MnemonicKey, please check your python implementation. if `python3 -c \"import ssl; print(ssl.OPENSSL_VERSION)\"` returns LibreSSL 2.8.3, you need to reinstall python via pyenv or homebrew.*</sub>\n\n```python\n>>> from terra_classic_sdk.client.lcd import LCDClient\n>>> from terra_classic_sdk.key.mnemonic import MnemonicKey\n\n# Fill in the mnemonic phrase of your wallet. A better practice is to set it as a system variable and read it.\n>>> key = MnemonicKey(\n mnemonic=\"sport oppose usual cream task benefit canvas xxxxxxxxxxxxxxxxxx\")\n\n# Init wallet\n>>> wallet = LCDClient().wallet(key=key)\n```\n\nOnce you have your Wallet, you can simply create a StdTx using `Wallet.create_and_sign_tx`.\n\n```python\n>>> from terra_classic_sdk.core.bank import MsgSend\n>>> from terra_classic_sdk.client.lcd.api.tx import CreateTxOptions\n\n>>> tx = wallet.create_and_sign_tx(CreateTxOptions(\n msgs=[MsgSend(\n \"terra1drs4gul908c59638gu9s88mugdnujdprjhtu7n\", # Sender\n 'terra1s2xpff7mj6jpxfyhr7pe25vt8puvgj4wyq8lz4', # Receiver\n \"1000000uluna\" # send 1 lunc\n )],\n memo=\"test transaction!\",\n gas_adjustment=1.2, # Auto fee, can be increased during peak periods.\n \n # fee=Fee(240324,'7023928uluna'), # Set the fees manually if you need\n ))\n```\n\nYou should now be able to broadcast your transaction to the network.\n\n```python\n>>> result = LCDClient().tx.broadcast(tx)\n>>> print(result)\n```\n\n<br/>\n\n## Dependencies\n\nTerra Classic SDK uses <a href=\"https://python-poetry.org/\">Poetry</a> to manage dependencies. To get set up with all the required dependencies, run:\n\n```\n$ pip install poetry\n$ poetry install\n```\n\n## Tests\n\nTerra Classic SDK provides extensive tests for data classes and functions. To run them, after the steps in [Dependencies](#dependencies):\n\n```\n$ make test\n```\n\n## Code Quality\n\nTerra Classic SDK uses <a href=\"https://black.readthedocs.io/en/stable/\">Black</a>, <a href=\"https://isort.readthedocs.io/en/latest/\">isort</a>, and <a href=\"https://mypy.readthedocs.io/en/stable/index.html\">Mypy</a> for checking code quality and maintaining style. To reformat, after the steps in [Dependencies](#dependencies):\n\n```\n$ make qa && make format\n```\n\n<br/>\n\n\n\n# Contributing\n\nCommunity 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.\n\n<br/>\n\n## Reporting an Issue\n\nFirst things first: **Do NOT report security vulnerabilities in public issues!** Please disclose responsibly by submitting your findings to the [Terra Bugcrowd submission form](https://github.com/BInodes-official/terra.py). The issue will be assessed as soon as possible.\nIf you encounter a different issue with the Python SDK, check first to see if there is an existing issue on the <a href=\"https://github.com/BInodes-official/terra.py/issues\">Issues</a> page, or if there is a pull request on the <a href=\"https://github.com/BInodes-official/terra.py/pulls\">Pull requests</a> page. Be sure to check both the Open and Closed tabs addressing the issue.\n\nIf there isn't a discussion on the topic there, you can file an issue. The ideal report includes:\n\n- A description of the problem / suggestion.\n- How to recreate the bug.\n- If relevant, including the versions of your:\n - Python interpreter\n - Terra SDK\n - Optionally of the other dependencies involved\n- If possible, create a pull request with a (failing) test case demonstrating what's wrong. This makes the process for fixing bugs quicker & gets issues resolved sooner.\n </br>\n\n## Requesting a Feature\n\nIf you wish to request the addition of a feature, please first check out the <a href=\"https://github.com/BInodes-official/terra.py/issues\">Issues</a> page and the <a href=\"https://github.com/BInodes-official/terra.py/pulls\">Pull requests</a> page (both Open and Closed tabs). If you decide to continue with the request, think of the merits of the feature to convince the project's developers, and provide as much detail and context as possible in the form of filing an issue on the <a href=\"https://github.com/BInodes-official/terra.py/issues\">Issues</a> page.\n\n<br/>\n\n## Contributing Code\n\nIf you wish to contribute to the repository in the form of patches, improvements, new features, etc., first scale the contribution. If it is a major development, like implementing a feature, it is recommended that you consult with the developers of the project before starting the development to avoid duplicating efforts. Once confirmed, you are welcome to submit your pull request.\n</br>\n\n### For new contributors, here is a quick guide:\n\n1. Fork the repository.\n2. Build the project using the [Dependencies](#dependencies) and [Tests](#tests) steps.\n3. Install a <a href=\"https://virtualenv.pypa.io/en/latest/index.html\">virtualenv</a>.\n4. Develop your code and test the changes using the [Tests](#tests) and [Code Quality](#code-quality) steps.\n5. Commit your changes (ideally follow the <a href=\"https://github.com/angular/angular/blob/master/CONTRIBUTING.md#commit\">Angular commit message guidelines</a>).\n6. Push your fork and submit a pull request to the repository's `main` branch to propose your code.\n\nA good pull request:\n\n- Is clear and concise.\n- Works across all supported versions of Python. (3.7+)\n- Follows the existing style of the code base (<a href=\"https://pypi.org/project/flake8/\">`Flake8`</a>).\n- Has comments included as needed.\n- Includes a test case that demonstrates the previous flaw that now passes with the included patch, or demonstrates the newly added feature.\n- Must include documentation for changing or adding any public APIs.\n- Must be appropriately licensed (MIT License).\n </br>\n\n## Documentation Contributions\n\nDocumentation improvements are always welcome. The documentation files live in the [docs](./docs) directory of the repository and are written in <a href=\"https://docutils.sourceforge.io/rst.html\">reStructuredText</a> and use <a href=\"https://www.sphinx-doc.org/en/master/\">Sphinx</a> to create the full suite of documentation.\n</br>\nWhen contributing documentation, please do your best to follow the style of the documentation files. This means a soft limit of 88 characters wide in your text files and a semi-formal, yet friendly and approachable, prose style. You can propose your improvements by submitting a pull request as explained above.\n\n### Need more information on how to contribute?\n\nYou can give this <a href=\"https://opensource.guide/how-to-contribute/#how-to-submit-a-contribution\">guide</a> read for more insight.\n\n<br/>\n\n# License\n\nThis software is licensed under the MIT license. See [LICENSE](./LICENSE) for full disclosure.\n\n<hr/>\n\n<p> </p>\n<p align=\"center\">\n <a href=\"https://terra.money/\"><img src=\"https://assets.website-files.com/611153e7af981472d8da199c/61794f2b6b1c7a1cb9444489_symbol-terra-blue.svg\" alt=\"Terra-logo\" width=200/></a>\n<div align=\"center\">\n <sub><em>Powering the innovation of money.</em></sub>\n</div>\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "The Python SDK for Terra Classic Data Analysis",
"version": "0.2.0",
"project_urls": {
"Documentation": "https://terra-money.github.io/terra.py/index.html",
"Homepage": "https://github.com/BInodes-official/terra.py",
"Repository": "https://github.com/BInodes-official/terra.py"
},
"split_keywords": [
"terra",
" terra classic",
" lunc",
" lunc sdk",
" terra.py",
" terra sdk",
" luna classic",
" luna classic sdk",
" lunc sdk",
" lunc analysis",
" terra analysis",
" terra classic analysis",
" lunc data",
" terra data",
" terra classic data"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "dcc44b36e0549055a2aa6347bccf203adfe807f66d4027ee80e98665a21f93ae",
"md5": "aff10f9055195fbcad0333454c019b02",
"sha256": "f11199d923a3b31ec9897b80d718b62153dfecf1e8367049291e0b3442042924"
},
"downloads": -1,
"filename": "terra_classic_data_analysis_sdk-0.2.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "aff10f9055195fbcad0333454c019b02",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<4.0,>=3.10",
"size": 176612,
"upload_time": "2025-07-12T01:51:38",
"upload_time_iso_8601": "2025-07-12T01:51:38.576737Z",
"url": "https://files.pythonhosted.org/packages/dc/c4/4b36e0549055a2aa6347bccf203adfe807f66d4027ee80e98665a21f93ae/terra_classic_data_analysis_sdk-0.2.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7cac4f4c3d8b683556bc2a83c3fa8aaf094b94837583fc022ee7fdf003979309",
"md5": "c5c6b7a6550b1e136ee5a29d640fa548",
"sha256": "efef85883132196038da39039bedcbbb56238a474466895743d8f3fb41e6d791"
},
"downloads": -1,
"filename": "terra_classic_data_analysis_sdk-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "c5c6b7a6550b1e136ee5a29d640fa548",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4.0,>=3.10",
"size": 120025,
"upload_time": "2025-07-12T01:51:40",
"upload_time_iso_8601": "2025-07-12T01:51:40.591142Z",
"url": "https://files.pythonhosted.org/packages/7c/ac/4f4c3d8b683556bc2a83c3fa8aaf094b94837583fc022ee7fdf003979309/terra_classic_data_analysis_sdk-0.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-12 01:51:40",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "BInodes-official",
"github_project": "terra.py",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "terra-classic-data-analysis-sdk"
}