mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 01:14:31 +02:00
Use pysqlite3 if available
This commit is contained in:
parent
c88f0a4d46
commit
152eb2afaf
6 changed files with 10 additions and 6 deletions
4
sqlite_utils/utils.py
Normal file
4
sqlite_utils/utils.py
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
try:
|
||||
import pysqlite3 as sqlite3
|
||||
except ImportError:
|
||||
import sqlite3
|
||||
Loading…
Add table
Add a link
Reference in a new issue