2018-09-17 00:27:00 +00:00
|
|
|
# vim:fileencoding=utf-8
|
|
|
|
"""pycountry"""
|
|
|
|
|
|
|
|
import os.path
|
2022-01-24 04:07:52 +00:00
|
|
|
import unicodedata
|
2018-09-17 00:27:00 +00:00
|
|
|
|
2022-11-07 18:06:49 +00:00
|
|
|
import pycountry.db
|
2022-01-24 04:07:52 +00:00
|
|
|
|
2018-09-17 00:27:00 +00:00
|
|
|
try:
|
2022-01-24 04:07:52 +00:00
|
|
|
import pkg_resources
|
2022-11-07 18:06:49 +00:00
|
|
|
|
2022-01-24 04:07:52 +00:00
|
|
|
resource_filename = pkg_resources.resource_filename
|
2022-11-07 18:06:49 +00:00
|
|
|
except ImportError:
|
2022-01-24 04:07:52 +00:00
|
|
|
|
2018-09-17 00:27:00 +00:00
|
|
|
def resource_filename(package_or_requirement, resource_name):
|
|
|
|
return os.path.join(os.path.dirname(__file__), resource_name)
|
|
|
|
|
2022-11-07 18:06:49 +00:00
|
|
|
else:
|
|
|
|
try:
|
|
|
|
__version__ = pkg_resources.get_distribution("pycountry").version
|
|
|
|
except pkg_resources.DistributionNotFound:
|
|
|
|
__version__ = "n/a"
|
2018-09-17 00:27:00 +00:00
|
|
|
|
2022-11-07 18:06:49 +00:00
|
|
|
|
|
|
|
LOCALES_DIR = resource_filename("pycountry", "locales")
|
|
|
|
DATABASE_DIR = resource_filename("pycountry", "databases")
|
2018-09-17 00:27:00 +00:00
|
|
|
|
|
|
|
|
2022-01-24 04:07:52 +00:00
|
|
|
def remove_accents(input_str):
|
|
|
|
# Borrowed from https://stackoverflow.com/a/517974/1509718
|
2022-11-07 18:06:49 +00:00
|
|
|
nfkd_form = unicodedata.normalize("NFKD", input_str)
|
|
|
|
return "".join([c for c in nfkd_form if not unicodedata.combining(c)])
|
2022-01-24 04:07:52 +00:00
|
|
|
|
|
|
|
|
2018-09-17 00:27:00 +00:00
|
|
|
class ExistingCountries(pycountry.db.Database):
|
|
|
|
"""Provides access to an ISO 3166 database (Countries)."""
|
|
|
|
|
2022-11-07 18:06:49 +00:00
|
|
|
data_class_name = "Country"
|
|
|
|
root_key = "3166-1"
|
2018-09-17 00:27:00 +00:00
|
|
|
|
2022-01-24 04:07:52 +00:00
|
|
|
def search_fuzzy(self, query):
|
|
|
|
query = remove_accents(query.strip().lower())
|
2018-09-17 00:27:00 +00:00
|
|
|
|
2022-01-24 04:07:52 +00:00
|
|
|
# A country-code to points mapping for later sorting countries
|
|
|
|
# based on the query's matching incidence.
|
|
|
|
results = {}
|
|
|
|
|
|
|
|
def add_result(country, points):
|
|
|
|
results.setdefault(country.alpha_2, 0)
|
|
|
|
results[country.alpha_2] += points
|
|
|
|
|
|
|
|
# Prio 1: exact matches on country names
|
|
|
|
try:
|
|
|
|
add_result(self.lookup(query), 50)
|
|
|
|
except LookupError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
# Prio 2: exact matches on subdivision names
|
|
|
|
for candidate in subdivisions:
|
|
|
|
for v in candidate._fields.values():
|
|
|
|
if v is None:
|
|
|
|
continue
|
|
|
|
v = remove_accents(v.lower())
|
|
|
|
# Some names include alternative versions which we want to
|
|
|
|
# match exactly.
|
2022-11-07 18:06:49 +00:00
|
|
|
for v in v.split(";"):
|
2022-01-24 04:07:52 +00:00
|
|
|
if v == query:
|
|
|
|
add_result(candidate.country, 49)
|
|
|
|
break
|
|
|
|
|
|
|
|
# Prio 3: partial matches on country names
|
|
|
|
for candidate in self:
|
|
|
|
# Higher priority for a match on the common name
|
2022-11-07 18:06:49 +00:00
|
|
|
for v in [
|
|
|
|
candidate._fields.get("name"),
|
|
|
|
candidate._fields.get("official_name"),
|
|
|
|
candidate._fields.get("comment"),
|
|
|
|
]:
|
2022-01-24 04:07:52 +00:00
|
|
|
if v is None:
|
|
|
|
continue
|
|
|
|
v = remove_accents(v.lower())
|
|
|
|
if query in v:
|
|
|
|
# This prefers countries with a match early in their name
|
|
|
|
# and also balances against countries with a number of
|
|
|
|
# partial matches and their name containing 'new' in the
|
|
|
|
# middle
|
2022-11-07 18:06:49 +00:00
|
|
|
add_result(candidate, max([5, 30 - (2 * v.find(query))]))
|
2022-01-24 04:07:52 +00:00
|
|
|
break
|
|
|
|
|
|
|
|
# Prio 4: partial matches on subdivision names
|
|
|
|
for candidate in subdivisions:
|
2022-11-07 18:06:49 +00:00
|
|
|
v = candidate._fields.get("name")
|
2022-01-24 04:07:52 +00:00
|
|
|
if v is None:
|
|
|
|
continue
|
|
|
|
v = remove_accents(v.lower())
|
|
|
|
if query in v:
|
2022-11-07 18:06:49 +00:00
|
|
|
add_result(candidate.country, max([1, 5 - v.find(query)]))
|
2022-01-24 04:07:52 +00:00
|
|
|
|
|
|
|
if not results:
|
|
|
|
raise LookupError(query)
|
|
|
|
|
|
|
|
results = [
|
|
|
|
self.get(alpha_2=x[0])
|
|
|
|
# sort by points first, by alpha2 code second, and to ensure stable
|
|
|
|
# results the negative value allows us to sort reversely on the
|
|
|
|
# points but ascending on the country code.
|
2022-11-07 18:06:49 +00:00
|
|
|
for x in sorted(results.items(), key=lambda x: (-x[1], x[0]))
|
|
|
|
]
|
2022-01-24 04:07:52 +00:00
|
|
|
return results
|
|
|
|
|
|
|
|
|
|
|
|
class HistoricCountries(ExistingCountries):
|
2018-09-17 00:27:00 +00:00
|
|
|
"""Provides access to an ISO 3166-3 database
|
|
|
|
(Countries that have been removed from the standard)."""
|
|
|
|
|
2022-11-07 18:06:49 +00:00
|
|
|
data_class_name = "Country"
|
|
|
|
root_key = "3166-3"
|
2018-09-17 00:27:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Scripts(pycountry.db.Database):
|
|
|
|
"""Provides access to an ISO 15924 database (Scripts)."""
|
|
|
|
|
2022-11-07 18:06:49 +00:00
|
|
|
data_class_name = "Script"
|
|
|
|
root_key = "15924"
|
2018-09-17 00:27:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Currencies(pycountry.db.Database):
|
|
|
|
"""Provides access to an ISO 4217 database (Currencies)."""
|
|
|
|
|
2022-11-07 18:06:49 +00:00
|
|
|
data_class_name = "Currency"
|
|
|
|
root_key = "4217"
|
2018-09-17 00:27:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Languages(pycountry.db.Database):
|
|
|
|
"""Provides access to an ISO 639-1/2T/3 database (Languages)."""
|
|
|
|
|
2022-11-07 18:06:49 +00:00
|
|
|
no_index = ["status", "scope", "type", "inverted_name", "common_name"]
|
|
|
|
data_class_name = "Language"
|
|
|
|
root_key = "639-3"
|
2018-09-17 00:27:00 +00:00
|
|
|
|
|
|
|
|
2022-01-24 04:07:52 +00:00
|
|
|
class LanguageFamilies(pycountry.db.Database):
|
|
|
|
"""Provides access to an ISO 639-5 database
|
2022-11-07 18:06:49 +00:00
|
|
|
(Language Families and Groups)."""
|
2022-01-24 04:07:52 +00:00
|
|
|
|
2022-11-07 18:06:49 +00:00
|
|
|
data_class_name = "LanguageFamily"
|
|
|
|
root_key = "639-5"
|
2022-01-24 04:07:52 +00:00
|
|
|
|
|
|
|
|
2018-09-17 00:27:00 +00:00
|
|
|
class Subdivision(pycountry.db.Data):
|
|
|
|
def __init__(self, **kw):
|
2022-11-07 18:06:49 +00:00
|
|
|
if "parent" in kw:
|
|
|
|
kw["parent_code"] = kw["parent"]
|
2018-09-17 00:27:00 +00:00
|
|
|
else:
|
2022-11-07 18:06:49 +00:00
|
|
|
kw["parent_code"] = None
|
2018-09-17 00:27:00 +00:00
|
|
|
super(Subdivision, self).__init__(**kw)
|
2022-11-07 18:06:49 +00:00
|
|
|
self.country_code = self.code.split("-")[0]
|
2018-09-17 00:27:00 +00:00
|
|
|
if self.parent_code is not None:
|
2022-11-07 18:06:49 +00:00
|
|
|
self.parent_code = "%s-%s" % (self.country_code, self.parent_code)
|
2018-09-17 00:27:00 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def country(self):
|
|
|
|
return countries.get(alpha_2=self.country_code)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def parent(self):
|
|
|
|
if not self.parent_code:
|
|
|
|
return None
|
|
|
|
return subdivisions.get(code=self.parent_code)
|
|
|
|
|
|
|
|
|
|
|
|
class Subdivisions(pycountry.db.Database):
|
|
|
|
|
|
|
|
# Note: subdivisions can be hierarchical to other subdivisions. The
|
|
|
|
# parent_code attribute is related to other subdivisons, *not*
|
|
|
|
# the country!
|
|
|
|
|
|
|
|
data_class_base = Subdivision
|
2022-11-07 18:06:49 +00:00
|
|
|
data_class_name = "Subdivision"
|
|
|
|
no_index = ["name", "parent_code", "parent", "type"]
|
|
|
|
root_key = "3166-2"
|
2018-09-17 00:27:00 +00:00
|
|
|
|
|
|
|
def _load(self, *args, **kw):
|
|
|
|
super(Subdivisions, self)._load(*args, **kw)
|
|
|
|
|
|
|
|
# Add index for the country code.
|
2022-11-07 18:06:49 +00:00
|
|
|
self.indices["country_code"] = {}
|
2018-09-17 00:27:00 +00:00
|
|
|
for subdivision in self:
|
2022-11-07 18:06:49 +00:00
|
|
|
divs = self.indices["country_code"].setdefault(
|
|
|
|
subdivision.country_code.lower(), set()
|
|
|
|
)
|
2018-09-17 00:27:00 +00:00
|
|
|
divs.add(subdivision)
|
|
|
|
|
|
|
|
def get(self, **kw):
|
2022-11-07 18:06:49 +00:00
|
|
|
default = kw.setdefault("default", None)
|
2022-01-24 04:07:52 +00:00
|
|
|
subdivisions = super(Subdivisions, self).get(**kw)
|
2022-11-07 18:06:49 +00:00
|
|
|
if subdivisions is default and "country_code" in kw:
|
2022-01-24 04:07:52 +00:00
|
|
|
# This handles the case where we know about a country but there
|
|
|
|
# are no subdivisions: we return an empty list in this case
|
|
|
|
# (sticking to the expected type here) instead of None.
|
2022-11-07 18:06:49 +00:00
|
|
|
if countries.get(alpha_2=kw["country_code"]) is not None:
|
2018-09-17 00:27:00 +00:00
|
|
|
return []
|
2022-01-24 04:07:52 +00:00
|
|
|
return subdivisions
|
2018-09-17 00:27:00 +00:00
|
|
|
|
|
|
|
|
2022-11-07 18:06:49 +00:00
|
|
|
countries = ExistingCountries(os.path.join(DATABASE_DIR, "iso3166-1.json"))
|
|
|
|
subdivisions = Subdivisions(os.path.join(DATABASE_DIR, "iso3166-2.json"))
|
2018-09-17 00:27:00 +00:00
|
|
|
historic_countries = HistoricCountries(
|
2022-11-07 18:06:49 +00:00
|
|
|
os.path.join(DATABASE_DIR, "iso3166-3.json")
|
|
|
|
)
|
2022-01-24 04:07:52 +00:00
|
|
|
|
2022-11-07 18:06:49 +00:00
|
|
|
currencies = Currencies(os.path.join(DATABASE_DIR, "iso4217.json"))
|
2022-01-24 04:07:52 +00:00
|
|
|
|
2022-11-07 18:06:49 +00:00
|
|
|
languages = Languages(os.path.join(DATABASE_DIR, "iso639-3.json"))
|
2022-01-24 04:07:52 +00:00
|
|
|
language_families = LanguageFamilies(
|
2022-11-07 18:06:49 +00:00
|
|
|
os.path.join(DATABASE_DIR, "iso639-5.json")
|
|
|
|
)
|
2022-01-24 04:07:52 +00:00
|
|
|
|
2022-11-07 18:06:49 +00:00
|
|
|
scripts = Scripts(os.path.join(DATABASE_DIR, "iso15924.json"))
|