Installation
Requirements
- Python 3.8+
- pydantic
- httpx
Install via pip
Install the r3fresh ALM SDK from PyPI:
pip install r3freshInstall from source
Clone the repository and install in development mode:
git clone https://github.com/r3fresh-alm/r3fresh.git
cd r3fresh
pip install -e .Verify Installation
Import the SDK to verify it is installed correctly:
from r3fresh import ALM
alm = ALM(agent_id="test", mode="stdout")
print("r3fresh ALM SDK installed successfully!")