Using citrus with Postgres
As an open-source project, we want to play well with other open-source projects! When you use citrus, you can choose to integrate it with your own Postgres database.
How to get started
client = citrusdb.Client(
persist_directory="citrus",
database_type="pg",
host=PG_HOST,
port=PG_PORT,
user=PG_USER,
password=PG_PASSWORD
)Code examples
Last updated