mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
parent
2189be1440
commit
aae49fef3b
8 changed files with 18 additions and 10 deletions
|
|
@ -9,13 +9,17 @@ import os
|
|||
import pkg_resources
|
||||
import re
|
||||
import shlex
|
||||
import sqlite3
|
||||
import tempfile
|
||||
import time
|
||||
import shutil
|
||||
import urllib
|
||||
import numbers
|
||||
|
||||
try:
|
||||
import pysqlite3 as sqlite3
|
||||
except ImportError:
|
||||
import sqlite3
|
||||
|
||||
# From https://www.sqlite.org/lang_keywords.html
|
||||
reserved_words = set((
|
||||
'abort action add after all alter analyze and as asc attach autoincrement '
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue