CorgiDB.utils.get_table
CorgiDB.utils.get_table(name: str)Parameters
from corgidb import CorgiDB
# Connect CorgiDB to db.sqlite
cdb = CorgiDB(database_path="db.sqlite")
# Get the Table
tb = cdb.utils.get_table(
name="Employee"
)Last updated