wiseql 0.0.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.
wiseql/__init__.py ADDED
@@ -0,0 +1,10 @@
1
+ """WiseQL — the wise data browser.
2
+
3
+ In development. See https://wiseql.dev
4
+ """
5
+
6
+ __version__ = "0.0.1"
7
+
8
+
9
+ def main() -> None:
10
+ print(f"WiseQL {__version__} — in development. See https://wiseql.dev")
@@ -0,0 +1,41 @@
1
+ Metadata-Version: 2.4
2
+ Name: wiseql
3
+ Version: 0.0.1
4
+ Summary: WiseQL — the wise data browser: run SQL recipes as small, observable, debuggable steps. In development.
5
+ Project-URL: Homepage, https://wiseql.dev
6
+ Author-email: Reza Azizi <azizi.ra@gmail.com>
7
+ License: MIT
8
+ License-File: LICENSE
9
+ Keywords: data-quality,debugging,duckdb,oracle,pipeline,sql,tui
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Environment :: Console
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Topic :: Database
16
+ Classifier: Topic :: Software Development :: Debuggers
17
+ Requires-Python: >=3.12
18
+ Description-Content-Type: text/markdown
19
+
20
+ # WiseQL
21
+
22
+ **The wise data browser.**
23
+
24
+ WiseQL is a terminal app that runs **SQL recipes** — complex database reads broken into small, observable steps — with live run views, per-step reports, and assertions that catch data issues automatically.
25
+
26
+ A 400-line SQL query is a black box. WiseQL turns it into a glass box.
27
+
28
+ > 🚧 **In development.** This release reserves the package name. Follow progress at [wiseql.dev](https://wiseql.dev).
29
+
30
+ ## Planned highlights
31
+
32
+ - Recipes as TOML: break a monster query into a DAG of small SQL steps with named inputs/outputs
33
+ - Norton Commander-style TUI: F-keys, live DAG run view, drill into any step's data
34
+ - Per-step assertions (row counts, nulls, uniqueness) that find data issues for you
35
+ - Checkpointing (Parquet) — resume failed runs, diff today's run against yesterday's
36
+ - Oracle first, PostgreSQL next; DuckDB inside; read-only by default
37
+ - Optional local AI add-on for failure explanation — never required, never in the execution path
38
+
39
+ ## License
40
+
41
+ MIT
@@ -0,0 +1,6 @@
1
+ wiseql/__init__.py,sha256=PQEbIho0dIt_l0po1qj--q4-LnPyfyVR1lvvQk-OKNo,204
2
+ wiseql-0.0.1.dist-info/METADATA,sha256=jYLF9DhBaOyvE3b__3CuvGJYvv3BxrRqACere2hfr5E,1732
3
+ wiseql-0.0.1.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
4
+ wiseql-0.0.1.dist-info/entry_points.txt,sha256=D0yMbbqOjvWAkX_G8_xbXzBSTuQDoshjioWwtbkwbJs,39
5
+ wiseql-0.0.1.dist-info/licenses/LICENSE,sha256=wc5OdtLeI5IsHWAyx3nrhzD7rkrw48Zy3wM38JZdVIY,1067
6
+ wiseql-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ wiseql = wiseql:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Reza Azizi
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.