jsonstat-validator 0.2.1__tar.gz → 0.2.2__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.
Files changed (18) hide show
  1. {jsonstat_validator-0.2.1/jsonstat_validator.egg-info → jsonstat_validator-0.2.2}/PKG-INFO +1 -1
  2. {jsonstat_validator-0.2.1 → jsonstat_validator-0.2.2}/jsonstat_validator/__init__.py +5 -3
  3. {jsonstat_validator-0.2.1 → jsonstat_validator-0.2.2/jsonstat_validator.egg-info}/PKG-INFO +1 -1
  4. {jsonstat_validator-0.2.1 → jsonstat_validator-0.2.2}/pyproject.toml +1 -1
  5. {jsonstat_validator-0.2.1 → jsonstat_validator-0.2.2}/LICENSE +0 -0
  6. {jsonstat_validator-0.2.1 → jsonstat_validator-0.2.2}/MANIFEST.in +0 -0
  7. {jsonstat_validator-0.2.1 → jsonstat_validator-0.2.2}/README.md +0 -0
  8. {jsonstat_validator-0.2.1 → jsonstat_validator-0.2.2}/jsonstat_validator/models.py +0 -0
  9. {jsonstat_validator-0.2.1 → jsonstat_validator-0.2.2}/jsonstat_validator/validator.py +0 -0
  10. {jsonstat_validator-0.2.1 → jsonstat_validator-0.2.2}/jsonstat_validator.egg-info/SOURCES.txt +0 -0
  11. {jsonstat_validator-0.2.1 → jsonstat_validator-0.2.2}/jsonstat_validator.egg-info/dependency_links.txt +0 -0
  12. {jsonstat_validator-0.2.1 → jsonstat_validator-0.2.2}/jsonstat_validator.egg-info/requires.txt +0 -0
  13. {jsonstat_validator-0.2.1 → jsonstat_validator-0.2.2}/jsonstat_validator.egg-info/top_level.txt +0 -0
  14. {jsonstat_validator-0.2.1 → jsonstat_validator-0.2.2}/requirements.txt +0 -0
  15. {jsonstat_validator-0.2.1 → jsonstat_validator-0.2.2}/setup.cfg +0 -0
  16. {jsonstat_validator-0.2.1 → jsonstat_validator-0.2.2}/setup.py +0 -0
  17. {jsonstat_validator-0.2.1 → jsonstat_validator-0.2.2}/tests/test_custom.py +0 -0
  18. {jsonstat_validator-0.2.1 → jsonstat_validator-0.2.2}/tests/test_official_samples.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jsonstat-validator
3
- Version: 0.2.1
3
+ Version: 0.2.2
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
@@ -14,16 +14,18 @@ from jsonstat_validator.models import (
14
14
  Collection,
15
15
  Dataset,
16
16
  Dimension,
17
+ JSONStatBaseModel,
17
18
  JSONStatSchema,
18
19
  )
19
20
  from jsonstat_validator.validator import validate_jsonstat
20
21
 
21
- __version__ = "0.2.1"
22
+ __version__ = "0.2.2"
22
23
  __all__ = [
24
+ "Category",
25
+ "Collection",
23
26
  "Dataset",
24
27
  "Dimension",
25
- "Collection",
26
- "Category",
28
+ "JSONStatBaseModel",
27
29
  "JSONStatSchema",
28
30
  "validate_jsonstat",
29
31
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jsonstat-validator
3
- Version: 0.2.1
3
+ Version: 0.2.2
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
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "jsonstat-validator"
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  description = "A Python validator for the JSON-stat 2.0 standard format, based on Pydantic."
9
9
  readme = "README.md"
10
10
  authors = [