countrystatecity-postal-codes
Official Python package for postal/ZIP code data — 844,248 postcode/locality records representing 672,370 distinct codes across 125 countries, plus format metadata for 250 countries and validation regexes for 189. Part of the countrystatecity ecosystem.
Like the countries package, postcode data is lazy-loaded per country — installing the package doesn't load anything into memory until you ask for a specific country's data.
Installation
pip install countrystatecity-postal-codes
Quick Start
from countrystatecity_postal_codes import (
get_countries_with_postal_data,
get_postal_info_by_country,
get_postcodes_of_country,
get_postcode_by_code,
get_postcodes_by_code,
search_postcodes,
validate_postcode,
)
# Postal code format/regex for a country
us_info = get_postal_info_by_country("US")
# CountryPostalInfo(countryCode="US", postalCodeFormat="#####-####", postalCodeRegex="^\\d{5}(-\\d{4})?$", ...)
# Validate a postcode against the country's known format
validate_postcode("US", "10001") # True
validate_postcode("US", "abcde") # False
# All postcodes for a country (lazy loaded)
postcodes = get_postcodes_of_country("AD")
# [Postcode(code="AD100", localityName="Canillo", ...), ...]
# Look up the first entry for a postcode
pc = get_postcode_by_code("AD", "AD100")
print(pc.localityName) # Canillo
# Get every locality when a postcode is shared
matches = get_postcodes_by_code("BB", "BB18000")
# [Postcode(localityName="Crane", ...), Postcode(localityName="Six Cross Roads", ...)]
# Search by code or locality name within a country
results = search_postcodes("AD", "canillo")
# List postal-format metadata for every country
all_countries = get_countries_with_postal_data()
Data Model
class CountryPostalInfo(BaseModel):
countryCode: str # ISO2 country code (e.g., "US")
countryName: str # Country name (e.g., "United States")
postalCodeFormat: Optional[str] # Format pattern (e.g., "#####")
postalCodeRegex: Optional[str] # Validation regex (e.g., "^\\d{5}$")
postcodeCount: int # Number of individual postcodes available for this country
class Postcode(BaseModel):
code: str # The postal code value (e.g., "10001")
countryCode: str # ISO2 country code (e.g., "US")
stateCode: Optional[str] # State/province code, if known
localityName: Optional[str] # Human-readable place name
type: Optional[str] # Granularity: full | outward | sector | district | area
latitude: Optional[float]
longitude: Optional[float]
API Reference
| Function | Description |
|---|---|
get_countries_with_postal_data() |
Get postal format/regex metadata for all countries |
get_postal_info_by_country(code) |
Get postal format/regex metadata for an ISO2 country code |
get_postcodes_of_country(code) |
Get all postcodes for a country (lazy loaded) |
get_postcode_by_code(code, postcode) |
Get the first entry for a postcode within a country |
get_postcodes_by_code(code, postcode) |
Get every entry when a postcode covers multiple localities |
search_postcodes(code, query) |
Search postcodes within a country by code or locality name |
validate_postcode(code, postcode) |
Validate a postcode against the country's known format |
Coverage
Individual postcode listings are available for 125 countries with source data upstream: 844,248 postcode/locality records representing 672,370 distinct codes, with varying granularity per country. get_postal_info_by_country() returns format metadata for all 250 countries and validation regexes for the 189 countries where one is known, even if per-postcode listings aren't available. Check postcodeCount to see how many records are available for a given country.
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 |
| countrystatecity-translations | Country name translations in 18+ languages |
| countrystatecity-phonecodes | International phone/dialing codes for 250+ countries |
| countrystatecity-regions | Continents and geographic subregions for 250+ 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_postal_codes-1.0.1.tar.gz.
File metadata
- Download URL: countrystatecity_postal_codes-1.0.1.tar.gz
- Upload date:
- Size: 6.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e13e65b9f69061a79ebb2e8f0220a03ecdaa1966e8f00d7bda9b045b05a132b3
|
|
| MD5 |
e4659bbcbc26c4b1f6869a2af56798db
|
|
| BLAKE2b-256 |
c4fcb7c731f6c06a7689d2cab807b6cf2a808a9b9289111847d4a4469d3b1933
|
File details
Details for the file countrystatecity_postal_codes-1.0.1-py3-none-any.whl.
File metadata
- Download URL: countrystatecity_postal_codes-1.0.1-py3-none-any.whl
- Upload date:
- Size: 7.4 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea6da4ae20499ce317a6c5591e788e8abda085be77790c5904d491d3f49b7ffa
|
|
| MD5 |
50788599ed8b138b86b150b90f07f3e9
|
|
| BLAKE2b-256 |
8422864ea852027516ff2866587b3417846a0978645dcb84852350f2efb77009
|