sqlbuddy-nwi 0.3.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.
- _version.py +10 -0
- cli.py +1164 -0
- connections/__init__.py +31 -0
- connections/config_util.py +159 -0
- connections/manager.py +205 -0
- connections/readonly.py +45 -0
- connections/runtime.py +51 -0
- connections/wrappers.py +105 -0
- db_query.py +735 -0
- db_security.py +146 -0
- init.py +528 -0
- server.py +275 -0
- sqlbuddy_nwi-0.3.1.dist-info/METADATA +705 -0
- sqlbuddy_nwi-0.3.1.dist-info/RECORD +20 -0
- sqlbuddy_nwi-0.3.1.dist-info/WHEEL +5 -0
- sqlbuddy_nwi-0.3.1.dist-info/entry_points.txt +3 -0
- sqlbuddy_nwi-0.3.1.dist-info/licenses/LICENSE +21 -0
- sqlbuddy_nwi-0.3.1.dist-info/top_level.txt +9 -0
- test_vendor.py +50 -0
- tunnel.py +345 -0
_version.py
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"""Single source of truth for the sql-buddy version.
|
|
2
|
+
|
|
3
|
+
Keep this literal in sync with `version` in pyproject.toml. We keep a literal
|
|
4
|
+
(rather than reading only from installed metadata) so that vendored/offline
|
|
5
|
+
distributions and bare `python server.py` runs without an installed dist can
|
|
6
|
+
still report a version. `cli.get_version()` prefers installed metadata when
|
|
7
|
+
available and falls back to this.
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
__version__ = "0.3.1"
|