Python SDK Installation
Prerequisites
- Python 3.7 or newer
- pip (Python package installer)
Installation via pip
Run the following command in your terminal:
pip install my-python-sdk
Installation from source
If you prefer installing from the repository:
git clone https://github.com/example/my-python-sdk.git
cd my-python-sdk
pip install -e .
Verification
After installation, verify the SDK version:
python -c "import mysdk; print(mysdk.__version__)"