shortcountrynames
v0.11.1
Published
[![PyPI](https://img.shields.io/pypi/v/shortcountrynames.svg)](https://pypi.org/project/shortcountrynames/) [![npm](https://img.shields.io/npm/v/shortcountrynames.svg)](https://www.npmjs.com/package/shortcountrynames)
Downloads
333
Readme
“Do One Thing and Do It Well” - this package helps turning two or three letter codes into short English names.
shortcountrynames
is maintained by Robert Gieseke ([email protected]).
Data Package
Data Package, a simple CSV file, with two and three-letter country codes and short English country names based on the country-codes Data Package with some changes and additions to the choice of short names.
Python module
Install with
pip install shortcountrynames
Usage
from shortcountrynames import to_name
assert to_name("DE") == "Germany"
assert to_name("DEU") == "Germany"
JavaScript module
Install with
npm install shortcountrynames
Usage
import {names, to_name} from 'shortcountrynames'
// Define custom codes
names["TEST"] = 'test'
console.log(to_name("DEU")) // Germany
console.log(to_name("TEST")) // test
Notes
Non-standard codes:
EU
, EUU
- European Union
XK
, XKX
- Kosovo
License
CC0