Skip to content
This repository has been archived by the owner on Oct 9, 2024. It is now read-only.

Connecting to DetaBase

CircuitSacul edited this page Sep 27, 2022 · 1 revision

Before you can use your Bases, you have to create a client:

from detaorm import Client, ...

...


client = Client("<project key>", bases=[MyBase1, MyBase2])
await client.open()

If you don't list the bases when creating the client, DetaORM won't work right.

Clone this wiki locally