Note: we handle connection caching for all of our SDKs.

Client

The Client class is the main entry point for interacting with the Fortress platform. Here is a link to the Github

Initialization

fortress_alchemy = FortressAlchemy(
    org_id: str
    api_key: str
) -> None

Create engine

Create a new SQLAlchemy engine for the given tenant. The tenant ID is used to route data requests to the correct database.

fortress_alchemy.create_engine(tenant_id: str, **kwargs: Any) -> Engine: