List of all countries with names and ISO 3166-1 codes in all languages
Project description
Features
List of all countries with names and ISO 3166-1 codes in all languages and all data formats.
Installation
Install country_list by running:
pip install country_list
Usage
Get all available languages:
from country_list import available_languages
for language in available_languages():
print(language)
Get country names in english and swedish:
>>> from country_list import countries_for_language
>>> # countries_for_language returns a list of tuples now, might be changed to an OrderedDict
>>> countries = dict(countries_for_language('en'))
>>> print(countries['GB'])
'United Kingdom'
>>> print(countries['SE'])
'Sweden'
>>> countries = dict(countries_for_language('sv'))
>>> print(countries['GB'])
'Storbritannien'
>>> print(countries['SE'])
'Sverige'
Get country codes from country name:
>>> from country_list import countries_for_language
>>> # countries_for_language returns a list of tuples now, might be changed to an OrderedDict
>>> country_names = {name: code for code, name in countries_for_language('en')}
>>> print(country_names['United Kingdom'])
'GB'
>>> print(country_names['Sweden'])
'SE'
>>> country_names = {name: code for code, name in countries_for_language('sv')}
>>> print(country_names['Storbritannien'])
'GB'
>>> print(country_names['Sverige'])
'SE'
Credits
This package contains the data files from umpirsky/country-list.
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
License
The project is licensed under the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
country_list-1.1.0.tar.gz
(325.0 kB
view details)
Built Distribution
File details
Details for the file country_list-1.1.0.tar.gz
.
File metadata
- Download URL: country_list-1.1.0.tar.gz
- Upload date:
- Size: 325.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.0 CPython/3.11.4 Darwin/23.0.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2357db0e311f3f3f9923956e2fcbca88b1ec10beb2ff33579a0cc4548f95cfb4 |
|
MD5 | f0c8da23d32ee13c8d589c5ee2ffce9e |
|
BLAKE2b-256 | 8698174a73c0843faa7f9b3fd141f8ff300a333ac28e30b490ee7ebbe45d27e7 |
Provenance
File details
Details for the file country_list-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: country_list-1.1.0-py3-none-any.whl
- Upload date:
- Size: 1.5 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.0 CPython/3.11.4 Darwin/23.0.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d95034704ad622d0d7391dbe3d63d571ef739817646d43f845c7256fb562fc3 |
|
MD5 | 72822e19e740a6be4e1f505c38f62ea5 |
|
BLAKE2b-256 | 279198cfcce4f3fac57f6b9bfcc4ff927ad52f5794755584fbaacc34beea36d6 |