OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
__init__.py
Go to the documentation of this file.
1 from .version import get_package_version
2 
3 __version__ = get_package_version()
4 del get_package_version
5 
6 apilevel = "2.0"
7 threadsafety = 2
8 paramstyle = "named"
9 
10 from .connection import connect, Connection # noqa
11 
12 from .cursor import Cursor # noqa
13 
14 from .exceptions import ( # noqa
15  Warning,
16  Error,
17  InterfaceError,
18  DatabaseError,
19  DataError,
20  OperationalError,
21  IntegrityError,
22  InternalError,
23  ProgrammingError,
24  NotSupportedError,
25 )
26 
27 
28 from .dtypes import ( # noqa
29  Binary,
30  Date,
31  Time,
32  Timestamp,
33  BINARY,
34  STRING,
35  NUMBER,
36  DATETIME,
37  ROWID,
38  DateFromTicks,
39  TimeFromTicks,
40  TimestampFromTicks,
41 )
def get_package_version
Definition: version.py:20