-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Daniele Briggi
committed
Aug 28, 2024
1 parent
f17429d
commit 8a7f686
Showing
2 changed files
with
5 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,7 @@ | ||
# To replicate the public interface of sqlite3, we need to import | ||
# the classes and functions from the dbapi2 module. | ||
# To replicate the public interface of sqlite3, | ||
# we need to import everything from the dbapi2 module. | ||
# eg: sqlite3.connect() -> sqlitecloud.connect() | ||
# | ||
|
||
from .dbapi2 import ( | ||
PARSE_COLNAMES, | ||
PARSE_DECLTYPES, | ||
Connection, | ||
Cursor, | ||
Row, | ||
adapters, | ||
connect, | ||
converters, | ||
register_adapter, | ||
register_converter, | ||
) | ||
|
||
__all__ = [ | ||
"VERSION", | ||
"Connection", | ||
"Cursor", | ||
"connect", | ||
"register_adapter", | ||
"register_converter", | ||
"PARSE_DECLTYPES", | ||
"PARSE_COLNAMES", | ||
"adapters", | ||
"converters", | ||
"Row", | ||
] | ||
from .dbapi2 import * # noqa | ||
|
||
VERSION = "0.0.81" |