Metadata-Version: 2.1
Name: chiarpc
Version: 0.0.2
Summary: Chia RPC HTTP Client in Python.
Author-email: qqjt <itkid@live.com>
Project-URL: Homepage, https://git.codegeass.cc/qqjt/chiarpc
Project-URL: Issues, https://git.codegeass.cc/qqjt/chiarpc/-/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests

Chia RPC HTTP Client in Python.

## Default ports
- Daemon: 55400
- Full Node: 8555
- Farmer: 8559
- Harvester: 8560
- Wallet: 9256
- DataLayer: 8562


## Packaging

```shell
python3 -m pip install --upgrade build
python3 -m build

python3 -m pip install --upgrade twine
# test.pypi.org
python3 -m twine upload --repository testpypi dist/*
# pypi.org
python3 -m twine upload dist/*
```
