Database

class korus.database.database.Database(backend: DatabaseBackend)[source]

Bases: object

property korus_version: str

Get Korus version used to create the database.

Returns:
version: str

The Korus version in the form x.y.z

property tables: dict

Returns a dict with all the tables in the database

class korus.database.database.SQLiteDatabase(path: str, new: bool = False)[source]

Bases: Database