hsql 0.1.0__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,71 @@
1
+ Metadata-Version: 2.4
2
+ Name: hsql
3
+ Version: 0.1.0
4
+ Summary: The headless SQL client for scripts and agents. Installs Harlequin.
5
+ Project-URL: Homepage, https://harlequin.sh
6
+ Project-URL: Documentation, https://harlequin.sh/docs/getting-started/index
7
+ Project-URL: Repository, https://github.com/tconbeer/harlequin
8
+ Project-URL: Bug Tracker, https://github.com/tconbeer/harlequin/issues
9
+ Project-URL: Changelog, https://github.com/tconbeer/harlequin/blob/main/CHANGELOG.md
10
+ Author-email: Ted Conbeer <tconbeer@users.noreply.github.com>
11
+ License-Expression: MIT
12
+ License-File: LICENSE
13
+ Keywords: agents,cli,harlequin,headless,sql
14
+ Classifier: Development Status :: 1 - Planning
15
+ Classifier: Operating System :: MacOS :: MacOS X
16
+ Classifier: Operating System :: Microsoft :: Windows
17
+ Classifier: Operating System :: POSIX :: Linux
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Programming Language :: Python :: 3.14
23
+ Requires-Python: >=3.10
24
+ Requires-Dist: harlequin>=2.8
25
+ Description-Content-Type: text/markdown
26
+
27
+ # hsql
28
+
29
+ `hsql` is the headless command-line interface to
30
+ [Harlequin](https://harlequin.sh), the SQL IDE for your terminal — the same
31
+ engine and the same database adapters, without the TUI, for scripts, CI, and
32
+ coding agents.
33
+
34
+ ## Status
35
+
36
+ **This package is a placeholder that installs Harlequin.** The `hsql` command
37
+ itself is not here yet; it will ship as part of the `harlequin` distribution,
38
+ and this package will then require the version that provides it.
39
+
40
+ Installing it today gets you Harlequin:
41
+
42
+ ```bash
43
+ pip install hsql
44
+ harlequin --help
45
+ ```
46
+
47
+ If that is what you want, `pip install harlequin` is the more direct way to
48
+ say so.
49
+
50
+ ## What it will be
51
+
52
+ One CLI contract across every database Harlequin supports — DuckDB, SQLite,
53
+ Postgres, MySQL, BigQuery, Trino, Databricks, ODBC, ADBC and more — reusing
54
+ the profiles you already have in `.harlequin.toml`:
55
+
56
+ ```bash
57
+ hsql -P prod -c "select count(*) from orders"
58
+ hsql -P prod catalog analytics
59
+ hsql -P prod -tAc "select count(*) from orders"
60
+ ```
61
+
62
+ Same flags, same output formats, same exit codes, whichever database is on the
63
+ other end.
64
+
65
+ ## Links
66
+
67
+ - Documentation: <https://harlequin.sh>
68
+ - Source: <https://github.com/tconbeer/harlequin>
69
+ - Issues: <https://github.com/tconbeer/harlequin/issues>
70
+
71
+ MIT licensed.
@@ -0,0 +1,4 @@
1
+ hsql-0.1.0.dist-info/METADATA,sha256=DZxEg45Hi_490XkukFFbqnAg_ZHURjJhllGyr_T4YRs,2426
2
+ hsql-0.1.0.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
3
+ hsql-0.1.0.dist-info/licenses/LICENSE,sha256=Wdf1mXEX48JTe3Unchs3u8M7sUOB6v0fGsMI5WP7bB4,1068
4
+ hsql-0.1.0.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
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 Ted Conbeer
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.