Skip to content

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:

  1. Visit the Mira Flows website
  2. Click on the "Sign Up" button
  3. Follow the registration process to create your account

Obtain Your API Key ​

Once you've signed in to your Mira Flows account:

  1. Navigate to your account settings or dashboard
  2. Look for a section labeled "API Keys"
  3. Generate a new API key
  4. 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 ​

Remember, your API key is sensitive information. Never share it publicly or commit it to version control systems.