qod 0.3.7__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.
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.4
2
+ Name: qod
3
+ Version: 0.3.7
4
+ Summary: Command-line client for quack-on-demand: admin REST plane and FlightSQL plane
5
+ Project-URL: Homepage, https://github.com/starlake-ai/quack-on-demand
6
+ Project-URL: Repository, https://github.com/starlake-ai/quack-on-demand
7
+ Requires-Python: >=3.10
8
+ Requires-Dist: qod-cli==0.3.7
9
+ Description-Content-Type: text/markdown
10
+
11
+ # qod
12
+
13
+ Command-line client for [quack-on-demand](https://github.com/starlake-ai/quack-on-demand),
14
+ a multi-tenant DuckDB FlightSQL gateway.
15
+
16
+ This package currently installs [qod-cli](https://pypi.org/project/qod-cli/), which
17
+ provides the `qod` command. `qod` is becoming the canonical package name; `qod-cli`
18
+ will remain as a compatibility alias.
19
+
20
+ ## Usage
21
+
22
+ ```
23
+ uvx qod --help
24
+ ```
25
+
26
+ or
27
+
28
+ ```
29
+ pip install qod
30
+ qod --help
31
+ ```
@@ -0,0 +1,4 @@
1
+ qod_alias/__init__.py,sha256=C9XOgth5aWGcvhe_3RlUtCv7plYofEROHSJGocJfZsA,101
2
+ qod-0.3.7.dist-info/METADATA,sha256=hnvmsx7AEYD0OpFSP3-_8LyC-zk2fArNdSCAhc7ORbE,791
3
+ qod-0.3.7.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
4
+ qod-0.3.7.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.31.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
qod_alias/__init__.py ADDED
@@ -0,0 +1,3 @@
1
+ """qod: alias package for qod-cli. The qod command is provided by qod-cli."""
2
+
3
+ __version__ = "0.3.7"