A Python SDK for interacting with DipCoin SUI Move smart contracts.
It is recommended to use a Python virtual environment:
Create a virtual environment:
python -m venv path/to/myenvActivate the virtual environment:
source path/to/myenv/bin/activate # Linux/Mac
# or
.\path\to\myenv\Scripts\activate # WindowsInstall dependencies:
pip install -r requirements.txtDeactivate the virtual environment:
deactivatemkdocs servepytest tests/* -v