Installation
Sign Up for Mira Flows
To begin using the Mira Flows SDK, you first need to create an account on the Mira Flows platform:
- Visit the Mira Flows website
- Click on the "Sign Up" button
- Follow the registration process to create your account
Obtain Your API Key
Once you've signed in to your Mira Flows account:
- Navigate to your account settings or dashboard
- Look for a section labeled "API Keys"
- Generate a new API key
- Copy and securely store your API key - you'll need this to authenticate your SDK requests
Install the Mira Flows SDK
Prerequisite: Ensure you have Python 3.10 installed. The Mira Flows SDK requires Python 3.10 to function properly.
Install the SDK using pip via CLI:
bash
pip install mira-sdk
Authenticate Your SDK
Use your API key to configure the SDK:
python
from mira_sdk import MiraClient, Flow
client = MiraClient(config={"API_KEY": "YOUR_API_KEY"})
Next Steps
- Explore the Marketplace to find existing flows
- Learn how to use Marketplace Flows
- Learn how to build your own flow
Remember, your API key is sensitive information. Never share it publicly or commit it to version control systems.