from . import _vibesql as _vibesql_core
from ._vibesql import (
Database,
Cursor,
Warning,
Error,
InterfaceError,
DatabaseError,
DataError,
OperationalError,
IntegrityError,
InternalError,
ProgrammingError,
NotSupportedError,
connect,
enable_profiling,
disable_profiling,
)
apilevel = "2.0"
threadsafety = 1
paramstyle = "qmark"
__version__ = "0.1.0"
__all__ = [
"apilevel",
"threadsafety",
"paramstyle",
"Warning",
"Error",
"InterfaceError",
"DatabaseError",
"DataError",
"OperationalError",
"IntegrityError",
"InternalError",
"ProgrammingError",
"NotSupportedError",
"Database",
"Cursor",
"connect",
"enable_profiling",
"disable_profiling",
]