countries-dictionary 7.0.0.dev2__tar.gz → 7.0.0.dev3__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. {countries_dictionary-7.0.0.dev2 → countries_dictionary-7.0.0.dev3}/PKG-INFO +1 -1
  2. {countries_dictionary-7.0.0.dev2 → countries_dictionary-7.0.0.dev3}/pyproject.toml +1 -1
  3. {countries_dictionary-7.0.0.dev2 → countries_dictionary-7.0.0.dev3}/src/countries_dictionary/iso_finder.py +2 -4
  4. {countries_dictionary-7.0.0.dev2 → countries_dictionary-7.0.0.dev3}/src/countries_dictionary/quick_functions.py +1 -4
  5. {countries_dictionary-7.0.0.dev2 → countries_dictionary-7.0.0.dev3}/src/countries_dictionary.egg-info/PKG-INFO +1 -1
  6. {countries_dictionary-7.0.0.dev2 → countries_dictionary-7.0.0.dev3}/LICENCE +0 -0
  7. {countries_dictionary-7.0.0.dev2 → countries_dictionary-7.0.0.dev3}/README.md +0 -0
  8. {countries_dictionary-7.0.0.dev2 → countries_dictionary-7.0.0.dev3}/setup.cfg +0 -0
  9. {countries_dictionary-7.0.0.dev2 → countries_dictionary-7.0.0.dev3}/src/countries_dictionary/__init__.py +0 -0
  10. {countries_dictionary-7.0.0.dev2 → countries_dictionary-7.0.0.dev3}/src/countries_dictionary/main_countries.py +0 -0
  11. {countries_dictionary-7.0.0.dev2 → countries_dictionary-7.0.0.dev3}/src/countries_dictionary/russia.py +0 -0
  12. {countries_dictionary-7.0.0.dev2 → countries_dictionary-7.0.0.dev3}/src/countries_dictionary/united_states.py +0 -0
  13. {countries_dictionary-7.0.0.dev2 → countries_dictionary-7.0.0.dev3}/src/countries_dictionary/unrecognised_states/transnistria.py +0 -0
  14. {countries_dictionary-7.0.0.dev2 → countries_dictionary-7.0.0.dev3}/src/countries_dictionary/unrecognised_states/unrecognised.py +0 -0
  15. {countries_dictionary-7.0.0.dev2 → countries_dictionary-7.0.0.dev3}/src/countries_dictionary/vietnam.py +0 -0
  16. {countries_dictionary-7.0.0.dev2 → countries_dictionary-7.0.0.dev3}/src/countries_dictionary.egg-info/SOURCES.txt +0 -0
  17. {countries_dictionary-7.0.0.dev2 → countries_dictionary-7.0.0.dev3}/src/countries_dictionary.egg-info/dependency_links.txt +0 -0
  18. {countries_dictionary-7.0.0.dev2 → countries_dictionary-7.0.0.dev3}/src/countries_dictionary.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: countries_dictionary
3
- Version: 7.0.0.dev2
3
+ Version: 7.0.0.dev3
4
4
  Summary: Provides dictionaries contains countries and unrecognised states and information about them
5
5
  Author-email: Ngô Trần Quang Thiện <quangthienngotran@gmail.com>
6
6
  License: GNU GENERAL PUBLIC LICENSE
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "countries_dictionary"
7
- version = "7.0.0.dev2"
7
+ version = "7.0.0.dev3"
8
8
  description = "Provides dictionaries contains countries and unrecognised states and information about them"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.7"
@@ -1,7 +1,5 @@
1
- from countries_dictionary.quick_functions import quick_function
2
- from countries_dictionary.russia import RUSSIA
3
- from countries_dictionary.united_states import UNITED_STATES
4
- from countries_dictionary.vietnam import VIETNAM
1
+ from countries_dictionary import quick_function
2
+ from countries_dictionary import RUSSIA, UNITED_STATES, VIETNAM
5
3
 
6
4
  countries = quick_function(addition="ISO 3166-2")
7
5
 
@@ -1,7 +1,4 @@
1
- from countries_dictionary import COUNTRIES
2
- from countries_dictionary.russia import RUSSIA
3
- from countries_dictionary.united_states import UNITED_STATES
4
- from countries_dictionary.vietnam import VIETNAM
1
+ from countries_dictionary import COUNTRIES, RUSSIA, UNITED_STATES, VIETNAM
5
2
 
6
3
  from json import dumps
7
4
  from copy import deepcopy
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: countries_dictionary
3
- Version: 7.0.0.dev2
3
+ Version: 7.0.0.dev3
4
4
  Summary: Provides dictionaries contains countries and unrecognised states and information about them
5
5
  Author-email: Ngô Trần Quang Thiện <quangthienngotran@gmail.com>
6
6
  License: GNU GENERAL PUBLIC LICENSE