The Bloomy Python SDK requires:
- Python 3.12 or higher
- A Bloom Growth account with API access
The recommended way to install the Bloomy SDK is via pip:
pip install bloomyOr if you're using uv:
uv add bloomyTo install the latest development version from GitHub:
pip install git+https://github.com/franccesco/bloomy-python.gitOr clone the repository and install locally:
git clone https://github.com/franccesco/bloomy-python.git
cd bloomy-python
pip install -e .The SDK has minimal dependencies:
httpx- Modern HTTP client with async supportpyyaml- For configuration file handlingpydantic- For data validation and models
All dependencies are automatically installed when you install the SDK.
To verify the installation was successful:
import bloomy
print(bloomy.__version__)Once installed, proceed to the Quick Start guide to configure your API key and make your first API call.