countries-dictionary 7.0.0.dev1__tar.gz → 7.0.0.dev2__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.
- {countries_dictionary-7.0.0.dev1 → countries_dictionary-7.0.0.dev2}/PKG-INFO +1 -1
- {countries_dictionary-7.0.0.dev1 → countries_dictionary-7.0.0.dev2}/pyproject.toml +1 -1
- countries_dictionary-7.0.0.dev2/src/countries_dictionary/__init__.py +10 -0
- {countries_dictionary-7.0.0.dev1 → countries_dictionary-7.0.0.dev2}/src/countries_dictionary.egg-info/PKG-INFO +1 -1
- countries_dictionary-7.0.0.dev1/src/countries_dictionary/__init__.py +0 -10
- {countries_dictionary-7.0.0.dev1 → countries_dictionary-7.0.0.dev2}/LICENCE +0 -0
- {countries_dictionary-7.0.0.dev1 → countries_dictionary-7.0.0.dev2}/README.md +0 -0
- {countries_dictionary-7.0.0.dev1 → countries_dictionary-7.0.0.dev2}/setup.cfg +0 -0
- {countries_dictionary-7.0.0.dev1 → countries_dictionary-7.0.0.dev2}/src/countries_dictionary/iso_finder.py +0 -0
- {countries_dictionary-7.0.0.dev1 → countries_dictionary-7.0.0.dev2}/src/countries_dictionary/main_countries.py +0 -0
- {countries_dictionary-7.0.0.dev1 → countries_dictionary-7.0.0.dev2}/src/countries_dictionary/quick_functions.py +0 -0
- {countries_dictionary-7.0.0.dev1 → countries_dictionary-7.0.0.dev2}/src/countries_dictionary/russia.py +0 -0
- {countries_dictionary-7.0.0.dev1 → countries_dictionary-7.0.0.dev2}/src/countries_dictionary/united_states.py +0 -0
- {countries_dictionary-7.0.0.dev1 → countries_dictionary-7.0.0.dev2}/src/countries_dictionary/unrecognised_states/transnistria.py +0 -0
- {countries_dictionary-7.0.0.dev1 → countries_dictionary-7.0.0.dev2}/src/countries_dictionary/unrecognised_states/unrecognised.py +0 -0
- {countries_dictionary-7.0.0.dev1 → countries_dictionary-7.0.0.dev2}/src/countries_dictionary/vietnam.py +0 -0
- {countries_dictionary-7.0.0.dev1 → countries_dictionary-7.0.0.dev2}/src/countries_dictionary.egg-info/SOURCES.txt +0 -0
- {countries_dictionary-7.0.0.dev1 → countries_dictionary-7.0.0.dev2}/src/countries_dictionary.egg-info/dependency_links.txt +0 -0
- {countries_dictionary-7.0.0.dev1 → countries_dictionary-7.0.0.dev2}/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.
|
|
3
|
+
Version: 7.0.0.dev2
|
|
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.
|
|
7
|
+
version = "7.0.0.dev2"
|
|
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"
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
from countries_dictionary.main_countries 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
|
|
5
|
+
|
|
6
|
+
from countries_dictionary.quick_functions import quick_function, json_dictionary, sort_dictionary
|
|
7
|
+
from countries_dictionary.iso_finder import iso_finder, iso_ru_finder, iso_us_finder, iso_vn_finder
|
|
8
|
+
|
|
9
|
+
from countries_dictionary.unrecognised_states.unrecognised import UNRECOGNISED_STATES
|
|
10
|
+
from countries_dictionary.unrecognised_states.transnistria import TRANSNISTRIA
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: countries_dictionary
|
|
3
|
-
Version: 7.0.0.
|
|
3
|
+
Version: 7.0.0.dev2
|
|
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
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
from main_countries import COUNTRIES
|
|
2
|
-
from russia import RUSSIA
|
|
3
|
-
from united_states import UNITED_STATES
|
|
4
|
-
from vietnam import VIETNAM
|
|
5
|
-
|
|
6
|
-
from quick_functions import quick_function, json_dictionary, sort_dictionary
|
|
7
|
-
from iso_finder import iso_finder, iso_ru_finder, iso_us_finder, iso_vn_finder
|
|
8
|
-
|
|
9
|
-
from unrecognised_states.unrecognised import UNRECOGNISED_STATES
|
|
10
|
-
from unrecognised_states.transnistria import TRANSNISTRIA
|
|
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
|