jsonstat-validator 0.1.6__py3-none-any.whl → 0.2.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.
- jsonstat_validator/__init__.py +3 -16
- jsonstat_validator/models.py +775 -0
- jsonstat_validator/validator.py +38 -737
- {jsonstat_validator-0.1.6.dist-info → jsonstat_validator-0.2.0.dist-info}/METADATA +3 -3
- jsonstat_validator-0.2.0.dist-info/RECORD +8 -0
- jsonstat_validator-0.1.6.dist-info/RECORD +0 -7
- {jsonstat_validator-0.1.6.dist-info → jsonstat_validator-0.2.0.dist-info}/WHEEL +0 -0
- {jsonstat_validator-0.1.6.dist-info → jsonstat_validator-0.2.0.dist-info}/licenses/LICENSE +0 -0
- {jsonstat_validator-0.1.6.dist-info → jsonstat_validator-0.2.0.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: jsonstat-validator
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.2.0
|
4
4
|
Summary: A Python validator for the JSON-stat 2.0 standard format, based on Pydantic.
|
5
5
|
Author-email: Ahmed Hassan <ahmedhassan.ahmed@fao.org>
|
6
6
|
License: # MIT License
|
@@ -30,11 +30,11 @@ Project-URL: Bug Tracker, https://github.com/ahmed-hassan19/jsonstat-validator/i
|
|
30
30
|
Project-URL: Documentation, https://github.com/ahmed-hassan19/jsonstat-validator#readme
|
31
31
|
Keywords: json-stat,validator,json,data-engineering,pydantic,python,fao
|
32
32
|
Classifier: Programming Language :: Python :: 3
|
33
|
-
Classifier: Programming Language :: Python :: 3.8
|
34
33
|
Classifier: Programming Language :: Python :: 3.9
|
35
34
|
Classifier: Programming Language :: Python :: 3.10
|
36
35
|
Classifier: Programming Language :: Python :: 3.11
|
37
36
|
Classifier: Programming Language :: Python :: 3.12
|
37
|
+
Classifier: Programming Language :: Python :: 3.13
|
38
38
|
Classifier: License :: OSI Approved :: MIT License
|
39
39
|
Classifier: Operating System :: OS Independent
|
40
40
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
@@ -42,7 +42,7 @@ Classifier: Topic :: Software Development :: Quality Assurance
|
|
42
42
|
Requires-Python: >=3.8
|
43
43
|
Description-Content-Type: text/markdown
|
44
44
|
License-File: LICENSE
|
45
|
-
Requires-Dist: pydantic
|
45
|
+
Requires-Dist: pydantic==2.11.2
|
46
46
|
Provides-Extra: dev
|
47
47
|
Requires-Dist: pytest>=8.1.1; extra == "dev"
|
48
48
|
Requires-Dist: build>=1.0.0; extra == "dev"
|
@@ -0,0 +1,8 @@
|
|
1
|
+
jsonstat_validator/__init__.py,sha256=-GDRGaLHUY9jGk6WTJxku5lONzor3ccI_5eWTttrvwU,708
|
2
|
+
jsonstat_validator/models.py,sha256=QoPXmdS72Qu4ooG_kZLKVt4YfAEjVA4GUa_F0DTYgAw,29287
|
3
|
+
jsonstat_validator/validator.py,sha256=gESY5uRHgw_Bskm2U2IAS2P3GDkHcNVIoBR69BNwWFY,1799
|
4
|
+
jsonstat_validator-0.2.0.dist-info/licenses/LICENSE,sha256=cyCvx3tHW8u9ZWGkTMrCKaB2ft4RonlMBVOEHDa2tEk,1091
|
5
|
+
jsonstat_validator-0.2.0.dist-info/METADATA,sha256=1G4cfvfxSGwzyGyozVcKwR5ITQVAV5xo_S_8cndfesU,7353
|
6
|
+
jsonstat_validator-0.2.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
7
|
+
jsonstat_validator-0.2.0.dist-info/top_level.txt,sha256=l6xoMFlWGRRbXMxl4MG-q0FA3In7rYZLBzVF8W7IhdU,19
|
8
|
+
jsonstat_validator-0.2.0.dist-info/RECORD,,
|
@@ -1,7 +0,0 @@
|
|
1
|
-
jsonstat_validator/__init__.py,sha256=1_hn50k8vBE8k4UR_Qb4_rvqPp9b-AsfmDZu2DHmILg,806
|
2
|
-
jsonstat_validator/validator.py,sha256=OcTYjUhNfTtYBdzc-XjlRrOfcuE9NDKF042G2bTmQ_g,28536
|
3
|
-
jsonstat_validator-0.1.6.dist-info/licenses/LICENSE,sha256=cyCvx3tHW8u9ZWGkTMrCKaB2ft4RonlMBVOEHDa2tEk,1091
|
4
|
-
jsonstat_validator-0.1.6.dist-info/METADATA,sha256=_TveAD2O6QjYXYuy8Bs5DNSCwgcikxKn2NiHwEdJVQY,7358
|
5
|
-
jsonstat_validator-0.1.6.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
6
|
-
jsonstat_validator-0.1.6.dist-info/top_level.txt,sha256=l6xoMFlWGRRbXMxl4MG-q0FA3In7rYZLBzVF8W7IhdU,19
|
7
|
-
jsonstat_validator-0.1.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|