countrystatecity-translations
Official Python package for country name translations — 4700+ entries covering 195 countries across 19 languages. Part of the countrystatecity ecosystem.
Installation
pip install countrystatecity-translations
Quick Start
from countrystatecity_translations import (
get_all_translations,
get_translations_by_country,
get_translations_by_language,
get_translation,
search_translations,
)
# Get all translation entries
translations = get_all_translations()
# [Translation(countryCode="AF", lang="fr", translation="Afghanistan", ...), ...]
# Get all translations for a country (all 19 languages)
de_translations = get_translations_by_country("DE")
# [Translation(countryCode="DE", lang="fr", translation="Allemagne", ...), ...]
# Get all countries translated into a specific language
french = get_translations_by_language("fr")
# [Translation(lang="fr", translation="Afghanistan", ...), ...]
# Lookup a single translation
t = get_translation("DE", "fr")
# Translation(countryCode="DE", countryName="Germany", lang="fr", translation="Allemagne")
# Search translated names
results = search_translations("Allemagne")
Data Model
class Translation(BaseModel):
countryCode: str # ISO2 country code (e.g., "DE")
countryName: str # English country name (e.g., "Germany")
lang: str # Language code (e.g., "fr")
translation: str # Translated country name (e.g., "Allemagne")
Supported Languages
| Code | Language | Code | Language |
|---|---|---|---|
ar |
Arabic | ko |
Korean |
br |
Breton | nl |
Dutch |
de |
German | pl |
Polish |
es |
Spanish | pt |
Portuguese |
fa |
Persian | pt-BR |
Portuguese (Brazil) |
fr |
French | ru |
Russian |
hi |
Hindi | tr |
Turkish |
hr |
Croatian | uk |
Ukrainian |
it |
Italian | zh-CN |
Chinese (Simplified) |
ja |
Japanese |
API Reference
| Function | Description |
|---|---|
get_all_translations() |
Get all translation entries |
get_translations_by_country(code) |
Get all language translations for a country |
get_translations_by_language(lang) |
Get all countries translated into a language |
get_translation(code, lang) |
Get a single country-language translation |
search_translations(query) |
Search by translated name or English country name |
License
ODbL-1.0 — see LICENSE.
Other Packages in this Ecosystem
| Package | Description |
|---|---|
| countrystatecity-countries | 250+ countries, 5,000+ states, 150,000+ cities |
| countrystatecity-timezones | 400+ IANA timezones with country associations and time conversion |
| countrystatecity-currencies | Currency codes, names, and symbols for every country |
| countrystatecity-phonecodes | International phone/dialing codes for 250+ countries |
| countrystatecity-regions | Continents and geographic subregions for 250+ countries |
| countrystatecity-postal-codes | Postal/ZIP codes and format validation for 125+ countries |
Data sourced from countries-states-cities-database.
Made with ❤️ by dr5hn
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file countrystatecity_translations-1.0.4.tar.gz.
File metadata
- Download URL: countrystatecity_translations-1.0.4.tar.gz
- Upload date:
- Size: 59.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a58e18c586a62557bf0d23a90c9aabd4c1d251773578f4589b9880b06712c7e7
|
|
| MD5 |
593bd9ad33d00e2d59375ce2554a77cd
|
|
| BLAKE2b-256 |
626bdd7cf41c7393e0c2b05fa5a84ae6d82695bf1dae6725636d9dcc303ede88
|
File details
Details for the file countrystatecity_translations-1.0.4-py3-none-any.whl.
File metadata
- Download URL: countrystatecity_translations-1.0.4-py3-none-any.whl
- Upload date:
- Size: 59.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb2f214ca046be5ffb5edb26802e8f56619527430026cc9f4a159b6559b8a1ad
|
|
| MD5 |
54d903e13766cfd051dcf5ab41d44325
|
|
| BLAKE2b-256 |
64c7838dd986bbc6c7dd454c53f7beabddea3c20fc15ae08f20c7c6b1259c9cc
|