sqlite-utils-sqlite-http 0.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sqlite_utils_sqlite_http/__init__.py +11 -0
- sqlite_utils_sqlite_http/version.py +2 -0
- sqlite_utils_sqlite_http-0.1.1.dist-info/METADATA +16 -0
- sqlite_utils_sqlite_http-0.1.1.dist-info/RECORD +7 -0
- sqlite_utils_sqlite_http-0.1.1.dist-info/WHEEL +5 -0
- sqlite_utils_sqlite_http-0.1.1.dist-info/entry_points.txt +2 -0
- sqlite_utils_sqlite_http-0.1.1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
from sqlite_utils import hookimpl
|
|
2
|
+
import sqlite_http
|
|
3
|
+
|
|
4
|
+
from sqlite_utils_sqlite_http.version import __version_info__, __version__
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
@hookimpl
|
|
8
|
+
def prepare_connection(conn):
|
|
9
|
+
conn.enable_load_extension(True)
|
|
10
|
+
sqlite_http.load(conn)
|
|
11
|
+
conn.enable_load_extension(False)
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: sqlite-utils-sqlite-http
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: TODO
|
|
5
|
+
Author: Alex Garcia
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/asg017/sqlite-http
|
|
8
|
+
Project-URL: Changelog, https://github.com/asg017/sqlite-http/releases
|
|
9
|
+
Project-URL: Issues, https://github.com/asg017/sqlite-http/issues
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: sqlite-utils
|
|
12
|
+
Requires-Dist: sqlite-http
|
|
13
|
+
|
|
14
|
+
# `sqlite-utils-sqlite-http`
|
|
15
|
+
|
|
16
|
+
A `sqlite-utils` plugin that registers the `sqlite-http` extension.
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
sqlite_utils_sqlite_http/__init__.py,sha256=vFiLPt1BUb-lHiYvogviXJhFnzqT_tze3vLDgDmj20M,273
|
|
2
|
+
sqlite_utils_sqlite_http/version.py,sha256=Fw9k2J7FpxWtkZ0L16690NqrhvOOpxawGmGs__CCdaM,71
|
|
3
|
+
sqlite_utils_sqlite_http-0.1.1.dist-info/METADATA,sha256=e6af-YnuFn3arskO1LdIMwVYds2rQxpzFplSGPEnlgY,514
|
|
4
|
+
sqlite_utils_sqlite_http-0.1.1.dist-info/WHEEL,sha256=5sUXSg9e4bi7lTLOHcm6QEYwO5TIF1TNbTSVFVjcJcc,92
|
|
5
|
+
sqlite_utils_sqlite_http-0.1.1.dist-info/entry_points.txt,sha256=zWUsRGoorj8w6FkxKLR21DIoRIzuk3aC1lbA4BUfzZM,54
|
|
6
|
+
sqlite_utils_sqlite_http-0.1.1.dist-info/top_level.txt,sha256=ah-YtOn1g91FMO0KBwU2LUCDJqUpER0GZVamG8In5KQ,25
|
|
7
|
+
sqlite_utils_sqlite_http-0.1.1.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
sqlite_utils_sqlite_http
|