SQLAlchemy (ORM)
SQLAlchemy Quickstart
Get started with the SQLAlchemy SDK
Here is the GitHub repository.
Quickstart
Prerequisites
Before you begin, make sure you have:
- A Fortress account
- Your API token
- Your Organization ID
You can find your API token and Organization ID in the Fortress dashboard under the API Keys section.
Installation
Install the SDK using pip:
pip install fortress-alchemy
Get Started with Client
from fortress_alchemy import FortressAlchemy
# Initialize the client with your API key
client = FortressAlchemy(org_id='your_org_id', api_key='your_api_key')
# Create an engine
engine = fortress_alchemy.create_engine("client1", echo=True)