checkup 0.2.8__tar.gz → 0.2.10__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.
- checkup-0.2.10/PKG-INFO +44 -0
- checkup-0.2.10/README.md +27 -0
- {checkup-0.2.8 → checkup-0.2.10}/pyproject.toml +7 -2
- checkup-0.2.8/PKG-INFO +0 -25
- checkup-0.2.8/README.md +0 -11
- {checkup-0.2.8 → checkup-0.2.10}/src/checkup/__init__.py +0 -0
- {checkup-0.2.8 → checkup-0.2.10}/src/checkup/config.py +0 -0
- {checkup-0.2.8 → checkup-0.2.10}/src/checkup/errors.py +0 -0
- {checkup-0.2.8 → checkup-0.2.10}/src/checkup/executor.py +0 -0
- {checkup-0.2.8 → checkup-0.2.10}/src/checkup/graph.py +0 -0
- {checkup-0.2.8 → checkup-0.2.10}/src/checkup/hub.py +0 -0
- {checkup-0.2.8 → checkup-0.2.10}/src/checkup/materializers/__init__.py +0 -0
- {checkup-0.2.8 → checkup-0.2.10}/src/checkup/materializers/base.py +0 -0
- {checkup-0.2.8 → checkup-0.2.10}/src/checkup/materializers/console.py +0 -0
- {checkup-0.2.8 → checkup-0.2.10}/src/checkup/materializers/csv_file.py +0 -0
- {checkup-0.2.8 → checkup-0.2.10}/src/checkup/materializers/database.py +0 -0
- {checkup-0.2.8 → checkup-0.2.10}/src/checkup/materializers/html_report.py +0 -0
- {checkup-0.2.8 → checkup-0.2.10}/src/checkup/metric.py +0 -0
- {checkup-0.2.8 → checkup-0.2.10}/src/checkup/provider.py +0 -0
- {checkup-0.2.8 → checkup-0.2.10}/src/checkup/providers/__init__.py +0 -0
- {checkup-0.2.8 → checkup-0.2.10}/src/checkup/providers/tags.py +0 -0
- {checkup-0.2.8 → checkup-0.2.10}/src/checkup/templates/metrics_report.html +0 -0
- {checkup-0.2.8 → checkup-0.2.10}/src/checkup/types.py +0 -0
- {checkup-0.2.8 → checkup-0.2.10}/src/checkup/utils.py +0 -0
- {checkup-0.2.8 → checkup-0.2.10}/src/checkup/validators.py +0 -0
checkup-0.2.10/PKG-INFO
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: checkup
|
|
3
|
+
Version: 0.2.10
|
|
4
|
+
Summary: Computational governance framework for measuring data product health
|
|
5
|
+
Author: Jan Vanbuel
|
|
6
|
+
Author-email: Jan Vanbuel <jan.vanbuel@ond.vlaanderen.be>
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
10
|
+
Requires-Dist: jinja2>=3.1.6
|
|
11
|
+
Requires-Dist: pydantic>=2.11.7
|
|
12
|
+
Requires-Dist: pyyaml>=6.0
|
|
13
|
+
Requires-Dist: rich>=13.0
|
|
14
|
+
Requires-Dist: sqlalchemy>=2.0
|
|
15
|
+
Requires-Python: >=3.12
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# CheckUp
|
|
19
|
+
|
|
20
|
+
[](https://pypi.org/project/checkup/)
|
|
21
|
+
[](https://pypi.org/project/checkup/)
|
|
22
|
+
|
|
23
|
+
Computational governance framework for measuring data product health.
|
|
24
|
+
|
|
25
|
+
## Plugins
|
|
26
|
+
|
|
27
|
+
Checkup uses plugins to provide metrics for different tools and platforms.
|
|
28
|
+
|
|
29
|
+
| Plugin | Version | Status | Description |
|
|
30
|
+
|--------|---------|--------|-------------|
|
|
31
|
+
| [checkup-dbt](https://pypi.org/project/checkup-dbt/) | [](https://pypi.org/project/checkup-dbt/) | Usable | dbt metrics |
|
|
32
|
+
| [checkup-git](https://pypi.org/project/checkup-git/) | [](https://pypi.org/project/checkup-git/) | Usable | Git repository metrics |
|
|
33
|
+
| [checkup-python](https://pypi.org/project/checkup-python/) | [](https://pypi.org/project/checkup-python/) | Early | Python project metrics |
|
|
34
|
+
| [checkup-conveyor](https://pypi.org/project/checkup-conveyor/) | [](https://pypi.org/project/checkup-conveyor/) | Early | [Conveyor](https://conveyor.dataminded.com/) API metrics |
|
|
35
|
+
| [checkup-airflow](https://pypi.org/project/checkup-airflow/) | [](https://pypi.org/project/checkup-airflow/) | Planned | Airflow metrics |
|
|
36
|
+
| [checkup-bitbucket](https://pypi.org/project/checkup-bitbucket/) | [](https://pypi.org/project/checkup-bitbucket/) | Planned | Bitbucket metrics |
|
|
37
|
+
| [checkup-github](https://pypi.org/project/checkup-github/) | [](https://pypi.org/project/checkup-github/) | Planned | GitHub metrics |
|
|
38
|
+
| [checkup-gitlab](https://pypi.org/project/checkup-gitlab/) | [](https://pypi.org/project/checkup-gitlab/) | Planned | GitLab metrics |
|
|
39
|
+
|
|
40
|
+
## Key Concepts
|
|
41
|
+
|
|
42
|
+
- **Metrics** - Calculate values from context
|
|
43
|
+
- **Providers** - Functions that enrich context (shared across metrics)
|
|
44
|
+
- **Materializers** - Output formats (Console, HTML, CSV, etc.)
|
checkup-0.2.10/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# CheckUp
|
|
2
|
+
|
|
3
|
+
[](https://pypi.org/project/checkup/)
|
|
4
|
+
[](https://pypi.org/project/checkup/)
|
|
5
|
+
|
|
6
|
+
Computational governance framework for measuring data product health.
|
|
7
|
+
|
|
8
|
+
## Plugins
|
|
9
|
+
|
|
10
|
+
Checkup uses plugins to provide metrics for different tools and platforms.
|
|
11
|
+
|
|
12
|
+
| Plugin | Version | Status | Description |
|
|
13
|
+
|--------|---------|--------|-------------|
|
|
14
|
+
| [checkup-dbt](https://pypi.org/project/checkup-dbt/) | [](https://pypi.org/project/checkup-dbt/) | Usable | dbt metrics |
|
|
15
|
+
| [checkup-git](https://pypi.org/project/checkup-git/) | [](https://pypi.org/project/checkup-git/) | Usable | Git repository metrics |
|
|
16
|
+
| [checkup-python](https://pypi.org/project/checkup-python/) | [](https://pypi.org/project/checkup-python/) | Early | Python project metrics |
|
|
17
|
+
| [checkup-conveyor](https://pypi.org/project/checkup-conveyor/) | [](https://pypi.org/project/checkup-conveyor/) | Early | [Conveyor](https://conveyor.dataminded.com/) API metrics |
|
|
18
|
+
| [checkup-airflow](https://pypi.org/project/checkup-airflow/) | [](https://pypi.org/project/checkup-airflow/) | Planned | Airflow metrics |
|
|
19
|
+
| [checkup-bitbucket](https://pypi.org/project/checkup-bitbucket/) | [](https://pypi.org/project/checkup-bitbucket/) | Planned | Bitbucket metrics |
|
|
20
|
+
| [checkup-github](https://pypi.org/project/checkup-github/) | [](https://pypi.org/project/checkup-github/) | Planned | GitHub metrics |
|
|
21
|
+
| [checkup-gitlab](https://pypi.org/project/checkup-gitlab/) | [](https://pypi.org/project/checkup-gitlab/) | Planned | GitLab metrics |
|
|
22
|
+
|
|
23
|
+
## Key Concepts
|
|
24
|
+
|
|
25
|
+
- **Metrics** - Calculate values from context
|
|
26
|
+
- **Providers** - Functions that enrich context (shared across metrics)
|
|
27
|
+
- **Materializers** - Output formats (Console, HTML, CSV, etc.)
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "checkup"
|
|
3
|
-
version = "0.2.
|
|
4
|
-
description = "
|
|
3
|
+
version = "0.2.10"
|
|
4
|
+
description = "Computational governance framework for measuring data product health"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [{ name = "Jan Vanbuel", email = "jan.vanbuel@ond.vlaanderen.be" }]
|
|
7
7
|
requires-python = ">=3.12"
|
|
8
|
+
classifiers = [
|
|
9
|
+
"Programming Language :: Python :: 3",
|
|
10
|
+
"Programming Language :: Python :: 3.12",
|
|
11
|
+
"Programming Language :: Python :: 3.13",
|
|
12
|
+
]
|
|
8
13
|
dependencies = [
|
|
9
14
|
"jinja2>=3.1.6",
|
|
10
15
|
"pydantic>=2.11.7",
|
checkup-0.2.8/PKG-INFO
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.3
|
|
2
|
-
Name: checkup
|
|
3
|
-
Version: 0.2.8
|
|
4
|
-
Summary: Add your description here
|
|
5
|
-
Author: Jan Vanbuel
|
|
6
|
-
Author-email: Jan Vanbuel <jan.vanbuel@ond.vlaanderen.be>
|
|
7
|
-
Requires-Dist: jinja2>=3.1.6
|
|
8
|
-
Requires-Dist: pydantic>=2.11.7
|
|
9
|
-
Requires-Dist: pyyaml>=6.0
|
|
10
|
-
Requires-Dist: rich>=13.0
|
|
11
|
-
Requires-Dist: sqlalchemy>=2.0
|
|
12
|
-
Requires-Python: >=3.12
|
|
13
|
-
Description-Content-Type: text/markdown
|
|
14
|
-
|
|
15
|
-

|
|
16
|
-
|
|
17
|
-
Computational governance framework for measuring data product health.
|
|
18
|
-
|
|
19
|
-
### Key Concepts
|
|
20
|
-
|
|
21
|
-
- **Metrics** - Calculate values from context
|
|
22
|
-
- **Providers** - Functions that enrich context (shared across metrics)
|
|
23
|
-
- **Materializers** - Output formats (Console, HTML, CSV, etc.)
|
|
24
|
-
|
|
25
|
-
|
checkup-0.2.8/README.md
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-

|
|
2
|
-
|
|
3
|
-
Computational governance framework for measuring data product health.
|
|
4
|
-
|
|
5
|
-
### Key Concepts
|
|
6
|
-
|
|
7
|
-
- **Metrics** - Calculate values from context
|
|
8
|
-
- **Providers** - Functions that enrich context (shared across metrics)
|
|
9
|
-
- **Materializers** - Output formats (Console, HTML, CSV, etc.)
|
|
10
|
-
|
|
11
|
-
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|