py-devo 0.2.0__tar.gz → 0.2.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.
- {py_devo-0.2.0/py_devo.egg-info → py_devo-0.2.1}/PKG-INFO +8 -5
- {py_devo-0.2.0 → py_devo-0.2.1}/README.md +6 -3
- {py_devo-0.2.0 → py_devo-0.2.1/py_devo.egg-info}/PKG-INFO +8 -5
- {py_devo-0.2.0 → py_devo-0.2.1}/pyproject.toml +2 -2
- {py_devo-0.2.0 → py_devo-0.2.1}/LICENSE +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/devo/__init__.py +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/devo/_infer.py +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/devo/_parser.py +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/devo/_report.py +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/devo/_schema.py +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/devo/cli.py +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/devo/enrich.py +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/devo/exceptions.py +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/devo/validate.py +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/devo/webui.py +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/py_devo.egg-info/SOURCES.txt +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/py_devo.egg-info/dependency_links.txt +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/py_devo.egg-info/entry_points.txt +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/py_devo.egg-info/requires.txt +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/py_devo.egg-info/top_level.txt +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/setup.cfg +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/tests/test_cli.py +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/tests/test_enrich.py +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/tests/test_infer.py +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/tests/test_parser.py +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/tests/test_syntax_only.py +0 -0
- {py_devo-0.2.0 → py_devo-0.2.1}/tests/test_validate.py +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: py-devo
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: DEVO — CSV to iCSV enrichment and Frictionless validation
|
|
5
5
|
License-Expression: MIT
|
|
6
|
-
Project-URL: Source, https://github.com/
|
|
6
|
+
Project-URL: Source, https://github.com/chasenunez/devo
|
|
7
7
|
Requires-Python: >=3.9
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
9
|
License-File: LICENSE
|
|
@@ -13,14 +13,17 @@ Requires-Dist: flask>=2.0.0; extra == "webui"
|
|
|
13
13
|
Dynamic: license-file
|
|
14
14
|
|
|
15
15
|
# DEVO
|
|
16
|
-
<img title="whip it" alt="you know you should" height="50" src="/images/DEVO_Pixels_1.webp">
|
|
17
|
-
|
|
18
16
|
**Data Enrichment and Validation Operator.** Takes a plain CSV, infers types and constraints, writes a self-documenting [iCSV](https://envidat.github.io/iCSV/) file plus a Frictionless schema, and validates the data against it.
|
|
19
17
|
|
|
20
18
|
If you give it a `.csv`, it enriches → schema → validates. If you give it an `.icsv`, it skips enrichment.
|
|
21
19
|
|
|
22
|
-
## Install
|
|
23
20
|
|
|
21
|
+
## Install from PyPI
|
|
22
|
+
```bash
|
|
23
|
+
pip install py-devo
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Install from local cloned repository
|
|
24
27
|
```bash
|
|
25
28
|
pip install -e .
|
|
26
29
|
```
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
# DEVO
|
|
2
|
-
<img title="whip it" alt="you know you should" height="50" src="/images/DEVO_Pixels_1.webp">
|
|
3
|
-
|
|
4
2
|
**Data Enrichment and Validation Operator.** Takes a plain CSV, infers types and constraints, writes a self-documenting [iCSV](https://envidat.github.io/iCSV/) file plus a Frictionless schema, and validates the data against it.
|
|
5
3
|
|
|
6
4
|
If you give it a `.csv`, it enriches → schema → validates. If you give it an `.icsv`, it skips enrichment.
|
|
7
5
|
|
|
8
|
-
## Install
|
|
9
6
|
|
|
7
|
+
## Install from PyPI
|
|
8
|
+
```bash
|
|
9
|
+
pip install py-devo
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Install from local cloned repository
|
|
10
13
|
```bash
|
|
11
14
|
pip install -e .
|
|
12
15
|
```
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: py-devo
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: DEVO — CSV to iCSV enrichment and Frictionless validation
|
|
5
5
|
License-Expression: MIT
|
|
6
|
-
Project-URL: Source, https://github.com/
|
|
6
|
+
Project-URL: Source, https://github.com/chasenunez/devo
|
|
7
7
|
Requires-Python: >=3.9
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
9
|
License-File: LICENSE
|
|
@@ -13,14 +13,17 @@ Requires-Dist: flask>=2.0.0; extra == "webui"
|
|
|
13
13
|
Dynamic: license-file
|
|
14
14
|
|
|
15
15
|
# DEVO
|
|
16
|
-
<img title="whip it" alt="you know you should" height="50" src="/images/DEVO_Pixels_1.webp">
|
|
17
|
-
|
|
18
16
|
**Data Enrichment and Validation Operator.** Takes a plain CSV, infers types and constraints, writes a self-documenting [iCSV](https://envidat.github.io/iCSV/) file plus a Frictionless schema, and validates the data against it.
|
|
19
17
|
|
|
20
18
|
If you give it a `.csv`, it enriches → schema → validates. If you give it an `.icsv`, it skips enrichment.
|
|
21
19
|
|
|
22
|
-
## Install
|
|
23
20
|
|
|
21
|
+
## Install from PyPI
|
|
22
|
+
```bash
|
|
23
|
+
pip install py-devo
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Install from local cloned repository
|
|
24
27
|
```bash
|
|
25
28
|
pip install -e .
|
|
26
29
|
```
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "py-devo"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.1"
|
|
8
8
|
description = "DEVO — CSV to iCSV enrichment and Frictionless validation"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
@@ -21,7 +21,7 @@ webui = ["flask>=2.0.0"]
|
|
|
21
21
|
devo = "devo.cli:main"
|
|
22
22
|
|
|
23
23
|
[project.urls]
|
|
24
|
-
Source = "https://github.com/
|
|
24
|
+
Source = "https://github.com/chasenunez/devo"
|
|
25
25
|
|
|
26
26
|
[tool.setuptools.packages.find]
|
|
27
27
|
include = ["devo*"]
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|