the-datagarden 1.2.4__tar.gz → 1.2.5__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/PKG-INFO +2 -2
  2. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/pyproject.toml +1 -1
  3. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden/models/regional_data.py +1 -1
  4. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden.egg-info/PKG-INFO +2 -2
  5. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/README.rst +0 -0
  6. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/setup.cfg +0 -0
  7. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden/__init__.py +0 -0
  8. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden/abc/__init__.py +0 -0
  9. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden/abc/api.py +0 -0
  10. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden/abc/authentication.py +0 -0
  11. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden/api/__init__.py +0 -0
  12. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden/api/authentication/__init__.py +0 -0
  13. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden/api/authentication/credentials/__init__.py +0 -0
  14. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden/api/authentication/environment/__init__.py +0 -0
  15. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden/api/authentication/settings.py +0 -0
  16. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden/api/base/__init__.py +0 -0
  17. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden/api/regions/__init__.py +0 -0
  18. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden/api/regions/base/__init__.py +0 -0
  19. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden/api/regions/base/settings.py +0 -0
  20. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden/api/regions/continent.py +0 -0
  21. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden/api/regions/country.py +0 -0
  22. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden/cli.py +0 -0
  23. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden/models/__init__.py +0 -0
  24. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden/models/geojson.py +0 -0
  25. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden/version.py +0 -0
  26. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden.egg-info/SOURCES.txt +0 -0
  27. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden.egg-info/dependency_links.txt +0 -0
  28. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden.egg-info/entry_points.txt +0 -0
  29. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden.egg-info/requires.txt +0 -0
  30. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/src/the_datagarden.egg-info/top_level.txt +0 -0
  31. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/tests/test_cli.py +0 -0
  32. {the_datagarden-1.2.4 → the_datagarden-1.2.5}/tests/test_the_datagarden_imports.py +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: the-datagarden
3
- Version: 1.2.4
3
+ Version: 1.2.5
4
4
  Summary: Public data made easy.
5
5
  Author-email: Maarten de Ruyter <info@the-datagarden.io>
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "the-datagarden"
3
- version = "1.2.4"
3
+ version = "1.2.5"
4
4
  description = "Public data made easy."
5
5
  readme = "README.rst"
6
6
  requires-python = ">=3.10"
@@ -404,7 +404,7 @@ class TheDataGardenRegionalDataModel:
404
404
 
405
405
  for column, stats in stats_by_column.items():
406
406
  print(
407
- f"{column} : {" " * (max_column_length + 3 - len(column))}"
407
+ f"{column} : {' ' * (max_column_length + 3 - len(column))}"
408
408
  f"{int(stats['count'] + stats['null_count'])}"
409
409
  f" of which with data: {int(stats['count'])} "
410
410
  f"({int(stats['count']) / (int(stats['count'] + stats['null_count'])) * 100:.0f}%)"
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: the-datagarden
3
- Version: 1.2.4
3
+ Version: 1.2.5
4
4
  Summary: Public data made easy.
5
5
  Author-email: Maarten de Ruyter <info@the-datagarden.io>
6
6
  License: MIT
File without changes