The DharitrI Python SDK.
Project description
drt-py-sdk
The Python SDK for interacting with DharitrI. It's an all in one sdk that can be used to create transactions (including smart contract calls and deployments), sign and broadcast transactions, create wallets and many more.
Documentation
Development setup
Virtual environment
Create a virtual environment and install the dependencies:
python3 -m venv ./venv
source ./venv/bin/activate
pip install -r ./requirements.txt --upgrade
Install development dependencies, as well:
pip install -r ./requirements-dev.txt --upgrade
Allow pre-commit to automatically run on git commit:
pre-commit install
Above, requirements.txt should mirror the dependencies section of pyproject.toml.
If using VSCode, restart it or follow these steps:
Ctrl + Shift + P- Select Interpreter
- Choose
./venv/bin/python.
Tests
Run the tests as follows:
This command runs all tests:
pytest .
If you want to skip network interaction tests run:
pytest -m "not networkInteraction"
We have some tests fetching mainnet transactions that are quite time consuming. To skip those, run this command:
pytest -m "not mainnet"
Generate test coverage report
First, we run the tests using coverage:
coverage run -m pytest .
Then, we can generate a report in the terminal using:
coverage report
We can also generate a html report using:
coverage html
Re-generate the docs
Each time a new module/submodule is added it needs to be added to the docs, as well. To do so cd in the root directory then run the following command:
sphinx-apidoc -f -o docs/ dharitri_py_sdk/ '*_test.py' '*constants.py'
This command will regenerate the .rst files for each module, excluding the tests and the constants.py files.
Also, each time a new version is released, the conf.py file should be updated accordingly.
Re-generate protobuf files:
protoc dharitri_py_sdk/core/proto/transaction.proto --python_out=. --pyi_out=.
Note that protoc must be installed beforehand. Use the same version as the one referenced in requirements.txt. For example, if we reference protobuf==5.29.4 in requirements.txt, then use protobuf v29.4.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dharitri_py_sdk-0.0.6.tar.gz.
File metadata
- Download URL: dharitri_py_sdk-0.0.6.tar.gz
- Upload date:
- Size: 16.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c2a2e129022dca0b0fb272d7d06e30e9755ec41bf4e4501fa8ac62beb7cccd4
|
|
| MD5 |
8de1a5cf370396e6f0b4d7a8b76bdc21
|
|
| BLAKE2b-256 |
62262703729339000456fe303a3fbcd7a21067af84c812890c6ccf5121b8d064
|
File details
Details for the file dharitri_py_sdk-0.0.6-py3-none-any.whl.
File metadata
- Download URL: dharitri_py_sdk-0.0.6-py3-none-any.whl
- Upload date:
- Size: 16.3 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4182f2a78b6fcf101641abd6de785982cea663571353619bc04fe14433cfeb6
|
|
| MD5 |
d5a73889cb5b35bc441d2ef2d54ffaf1
|
|
| BLAKE2b-256 |
25377abd5d72bd15974511f87827ff513b741208929f9f7efb8bdf333520cb32
|