Installation
Requirements
Section titled “Requirements”- Python 3.8 or higher
- pip (bundled with all standard Python distributions)
The SDK has a single runtime dependency — requests — which pip installs automatically.
Install
Section titled “Install”pip install MagicFeedbackTo pin a specific version in your project:
pip install MagicFeedback==1.0.14Or add it to your requirements.txt:
MagicFeedback>=1.0.14Verify
Section titled “Verify”from magicfeedback_sdk import MagicFeedbackprint("SDK imported successfully")Environments
Section titled “Environments”The SDK connects to https://api.magicfeedback.io by default. You can point it at a different base URL by passing the base_url argument to the constructor:
client = MagicFeedback( user="you@example.com", password="your-password", base_url="https://api-dev.magicfeedback.io",)