We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 224653f commit 5a8d28bCopy full SHA for 5a8d28b
ydb_dbapi/__init__.py
@@ -6,3 +6,10 @@
6
from .cursors import AsyncCursor
7
from .cursors import Cursor
8
from .errors import *
9
+from .version import version
10
+
11
+__version__ = version
12
13
+apilevel = "2.0"
14
+threadsafety = 0
15
+paramstyle = "pyformat"
ydb_dbapi/errors.py
@@ -4,6 +4,10 @@
4
from google.protobuf.message import Message
5
+class Warning(Exception): # noqa: N818,A001
+ pass
class Error(Exception):
def __init__(
self,
ydb_dbapi/version.py
@@ -0,0 +1 @@
1
+version = "0.0.1"
0 commit comments