wiseql 0.0.1__tar.gz
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-0.0.1/.gitignore +21 -0
- wiseql-0.0.1/LICENSE +21 -0
- wiseql-0.0.1/PKG-INFO +41 -0
- wiseql-0.0.1/README.md +22 -0
- wiseql-0.0.1/pyproject.toml +31 -0
- wiseql-0.0.1/src/wiseql/__init__.py +10 -0
wiseql-0.0.1/.gitignore
ADDED
wiseql-0.0.1/LICENSE
ADDED
|
@@ -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.
|
wiseql-0.0.1/PKG-INFO
ADDED
|
@@ -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
|
wiseql-0.0.1/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# WiseQL
|
|
2
|
+
|
|
3
|
+
**The wise data browser.**
|
|
4
|
+
|
|
5
|
+
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.
|
|
6
|
+
|
|
7
|
+
A 400-line SQL query is a black box. WiseQL turns it into a glass box.
|
|
8
|
+
|
|
9
|
+
> 🚧 **In development.** This release reserves the package name. Follow progress at [wiseql.dev](https://wiseql.dev).
|
|
10
|
+
|
|
11
|
+
## Planned highlights
|
|
12
|
+
|
|
13
|
+
- Recipes as TOML: break a monster query into a DAG of small SQL steps with named inputs/outputs
|
|
14
|
+
- Norton Commander-style TUI: F-keys, live DAG run view, drill into any step's data
|
|
15
|
+
- Per-step assertions (row counts, nulls, uniqueness) that find data issues for you
|
|
16
|
+
- Checkpointing (Parquet) — resume failed runs, diff today's run against yesterday's
|
|
17
|
+
- Oracle first, PostgreSQL next; DuckDB inside; read-only by default
|
|
18
|
+
- Optional local AI add-on for failure explanation — never required, never in the execution path
|
|
19
|
+
|
|
20
|
+
## License
|
|
21
|
+
|
|
22
|
+
MIT
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "wiseql"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "WiseQL — the wise data browser: run SQL recipes as small, observable, debuggable steps. In development."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.12"
|
|
7
|
+
authors = [{ name = "Reza Azizi", email = "azizi.ra@gmail.com" }]
|
|
8
|
+
license = { text = "MIT" }
|
|
9
|
+
keywords = ["sql", "debugging", "tui", "duckdb", "oracle", "data-quality", "pipeline"]
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Development Status :: 1 - Planning",
|
|
12
|
+
"Environment :: Console",
|
|
13
|
+
"Intended Audience :: Developers",
|
|
14
|
+
"License :: OSI Approved :: MIT License",
|
|
15
|
+
"Programming Language :: Python :: 3.12",
|
|
16
|
+
"Topic :: Database",
|
|
17
|
+
"Topic :: Software Development :: Debuggers",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://wiseql.dev"
|
|
22
|
+
|
|
23
|
+
[project.scripts]
|
|
24
|
+
wiseql = "wiseql:main"
|
|
25
|
+
|
|
26
|
+
[build-system]
|
|
27
|
+
requires = ["hatchling"]
|
|
28
|
+
build-backend = "hatchling.build"
|
|
29
|
+
|
|
30
|
+
[tool.hatch.build.targets.wheel]
|
|
31
|
+
packages = ["src/wiseql"]
|