python-pycountry
Port variant v11
Summary ISO country and language databases (3.11)
BROKEN
Package version 24.6.1
Homepage https://github.com/flyingcircusio/pycountry
Keywords python
Maintainer Python Automaton
License Not yet specified
Other variants v12
Ravenports Buildsheet | History
Ravensource Port Directory | History
Last modified 06 JUN 2024, 00:12:24 UTC
Port created 02 FEB 2018, 15:29:04 UTC
Subpackage Descriptions
single ########### pycountry ########### .. image:g: https://travis-ci.org/flyingcircusio/pycountry.svg?branch=master pycountry provides the ISO databases for the standards: - `639-3 `_ Languages - [3166] Codes for representation of names of countries and their subdivisions - `3166-1 `_ Countries - `3166-3 `_ Deleted countries - `3166-2 `_ Subdivisions of countries - [4217] Currencies - [15924] Scripts The package includes a copy from Debian's `pkg-isocodes `_ and makes the data accessible through a Python API. Translation files for the various strings are included as well. ******************** Data update policy ******************** No changes to the data will be accepted into pycountry. This is a pure wrapper around the ISO standard using the ``pkg-isocodes`` database from Debian *as is*. If you need changes to the political situation in the world, please talk to the ISO or Debian people, not me. ****************************** Donations / Monetary Support ****************************** This is a small project that I maintain in my personal time. I am not interested in personal financial gain. However, if you would like to support the project then I would love if you would donate to [Feminist Frequency] instead. Also, let the world know you did so, so that others can follow your path. *************** Contributions *************** The code lives in a [git repository on GitHub ], and issues must be reported in there as well. ************************ Countries (ISO 3166-1) ************************ Countries are accessible through a database object that is already configured upon import of pycountry and works as an iterable: .. code:: pycon >>> import pycountry >>> len(pycountry.countries) 249 >>> list(pycountry.countries)[0] Country(alpha_2='AF', alpha_3='AFG', name='Afghanistan', numeric='004', official_name='Islamic Republic of Afghanistan') Specific countries can be looked up by their various codes and provide the information included in the standard as attributes: .. code:: pycon >>> germany = pycountry.countries.get(alpha_2='DE') >>> germany Country(alpha_2='DE', alpha_3='DEU', name='Germany', numeric='276', official_name='Federal Republic of Germany') >>> germany.alpha_2 'DE' >>> germany.alpha_3 'DEU' >>> germany.numeric '276' >>> germany.name 'Germany' >>> germany.official_name 'Federal Republic of Germany' There's also a "fuzzy" search to help people discover "proper" countries for names that might only actually be subdivisions. The fuzziness also includes normalizing unicode accents. There's also a bit of prioritization included to prefer matches on country names before subdivision names and have countries with more matches be listed before ones with fewer matches: .. code:: pycon >>> pycountry.countries.search_fuzzy('England')
Configuration Switches (platform-specific settings discarded)
PY311 ON Build using Python 3.11 PY312 OFF Build using Python 3.12
Package Dependencies by Type
Build (only) python-pip:single:v11
autoselect-python:single:std
Build and Runtime python311:single:std
Download groups
main mirror://PYPIWHL/b1/ec/1fb891d8a2660716aadb2143235481d15ed1cbfe3ad669194690b0604492
Distribution File Information
f1a4fb391cd7214f8eefd39556d740adcc233c778a27f8942c8dca351d6ce06f 6335189 pycountry-24.6.1-py3-none-any.whl
Ports that require python-pycountry:v11
python-xml2rfc:v11 Request For Comment authoring with XML (3.11)