Skip to main content

Retrieve real random US addresses, with coordinates, for tests and fixtures

Project description

Random Address

This is a tool to retrieve a real address from a list of real, random US addresses. It is meant for testing: seeding fixtures, exercising address forms, and giving geolocation code something genuine to work with.

The address data comes from the OpenAddresses project, which collects address data published by national, state and local governments. Every address ships with the latitude and longitude given by that authoritative source, so each one resolves to a real point on the map without a geocoding round trip. All of the addresses are in the public domain, and they are deliberately not linked to people or businesses.

The addresses were pulled from OpenAddresses where the "Required attribute" field was present and not "Yes". See "Attribution" below for a list of sources.

This project was inspired by Real, Random Address Data (RRAD) project.

PyPI PyPI - License PyPI - Downloads PyPI - Python Version PyPI - Status PyPI Total Downloads

Installation

Run the following to install:

$ pip install random-address

Requires Python 3.10 or newer.

Usage

>>> from random_address import real_random_address
>>> real_random_address()
{'address1': '210 Beachcomber Drive', 'address2': '', 'city': 'Pismo Beach', 'state': 'CA',
 'postal_code': '93449', 'coordinates': {'lat': 35.169193, 'lng': -120.694434}}

Filters combine, so you can narrow by any mix of state, city and postal code. State codes and city names are matched case-insensitively.

>>> real_random_address(state='CA')
>>> real_random_address(city='Newark')
>>> real_random_address(postal_code='32409')
>>> real_random_address(state='CA', city='Newark')

If nothing matches, a NoMatchingAddressError is raised rather than an empty dictionary being returned, so a typo in a filter fails loudly:

>>> real_random_address(state='ZZ')
NoMatchingAddressError: No address matches state='ZZ'

Reproducible fixtures

Pass a seed to get the same address every time. The seed drives a private generator, so it never disturbs the global random stream the rest of your process draws from.

>>> real_random_address(seed=42) == real_random_address(seed=42)
True

Several addresses at once

>>> from random_address import real_random_addresses
>>> real_random_addresses(5, state='FL', seed=42)
[{...}, {...}, {...}, {...}, {...}]

Results are distinct by default. Pass unique=False to sample with replacement when you want more addresses than the filters can supply.

Inspecting the dataset

>>> import random_address
>>> random_address.list_states()
['AK', 'AL', 'AR', 'AZ', 'CA', ...]
>>> random_address.state_counts()
{'AK': 174, 'AL': 193, 'AR': 190, 'AZ': 199, 'CA': 332, ...}
>>> random_address.summary()
{'total_addresses': 3300, 'unique_states': 18, 'unique_cities': 426, 'unique_postal_codes': 694}

list_cities(), list_postal_codes(), city_counts() and postal_code_counts() work the same way.

Command line

$ random-address
1233 Paradise Lane, Fayetteville, AR 72701

$ random-address --state CA --count 2 --format json
$ random-address --state FL --count 50 --format csv > fixtures.csv
$ random-address states
$ random-address summary

Functions Overview

  • real_random_address(*, state=None, city=None, postal_code=None, seed=None): one address, optionally filtered.
  • real_random_addresses(count=1, *, state=None, city=None, postal_code=None, seed=None, unique=True): several addresses.
  • list_states(), list_cities(), list_postal_codes(): the values present in the dataset.
  • state_counts(), city_counts(), postal_code_counts(): how many addresses each value has.
  • summary(): dataset-wide totals.

The package ships type information (py.typed), so Address and Coordinates are available to type checkers and editors.

Upgrading from 1.x

Version 2.0 replaced the four real_random_address_by_* functions with filter arguments and renamed the postalCode key to postal_code.

1.x 2.0
real_random_address_by_state('CA') real_random_address(state='CA')
real_random_address_by_city('Newark') real_random_address(city='Newark')
real_random_address_by_postal_code('32409') real_random_address(postal_code='32409')
list_available_states() list_states()
list_available_cities() list_cities()
list_available_postal_codes() list_postal_codes()
list_states_with_counts() state_counts()
list_cities_with_counts() city_counts()
list_postal_codes_with_counts() postal_code_counts()
get_summary() summary()
address['postalCode'] address['postal_code']
an empty {} when nothing matched NoMatchingAddressError

Attribution

All data collected from the OpenAddresses project, and is in the public domain. Original sources:

  • City of Haddam (CT)
  • Ciy of Hartford (CT)
  • City of Lyme (CT)
  • City of Manchester (CT)
  • City of Watertown (CT)
  • City of Avon (CT)
  • Town of Fairfield (CT)
  • City of Groton (CT)
  • Office of Geographic Information (MassGIS), Commonwealth of Massachusetts, MassIT (MA)
  • VT Enhanced 911 Board, VCGI (VT)
  • City of Huntsville (AL)
  • City of Montgomery (AL)
  • Shelby County (AL)
  • Talladega County (AL)
  • City of Fayetteville (AR)
  • Arkansas Geographic Information Office (AR)
  • City of Washington (DC)
  • Bay County (FL)
  • Brevard County (FL)
  • Charlotte County (FL)
  • Citrus County (FL)
  • Clay County (FL)
  • Highlands County, FL (FL)
  • Hillsborough County (FL)
  • City of Savannah (GA)
  • Gordon County (GA)
  • Muscogee County (GA)
  • Sumter County (GA)
  • Metro Louisville, LOJIC partners (KY)
  • Anne Arundel County (MD)
  • City of Baltimore (MD)
  • Frederick County (MD)
  • Oklahoma and Logan Counties - Association of Central Oklahoma Governments (OK)
  • Kern, Cleveland, Canadian, Logan Counties (OK)
  • City of Nashville (TN)
  • Cooke,Fannin,Grayson Counties - Texoma Council of Governments (TX)
  • Municipality of Anchorage (AK)
  • Copyright © 2015 Kenai Peninsula Borough (AK)
  • Matanuska-Susitna Borough (AK)
  • City of Glendale (AZ)
  • City of Mesa (AZ)
  • Alameda County (CA)
  • Amador County (CA)
  • City of Berkeley (CA)
  • Butte County (CA)
  • City of Bakersfield (CA)
  • City of Carson (CA)
  • City of Cupertino (CA)
  • City of Hayward and Fairview. Licensed for Public Use (CA)
  • City of Mountain View (CA)
  • City of Orange (CA)
  • Contra Costa County (CA)
  • El Dorando County (CA)
  • Fresno County (CA)
  • Humboldt County (CA)
  • Kern County (CA)
  • Kings County (CA)
  • Lake County (CA)
  • Lassen County (CA)
  • Los Angeles County (CA)
  • Madera County (CA)
  • Marin County (CA)
  • Merced County (CA)
  • Mono County (CA)
  • Monterey County (CA)
  • Napa County (CA)
  • County of Nevada, California (CA)
  • Orange County (CA)
  • City of Palo Alto (CA)
  • County of Placer (CA)
  • Secramento County (CA)
  • San Bernardino County (CA)
  • San Diego Geographic Information Source - JPA (CA)
  • San Joaquin County (CA)
  • San Luis Obispo County (CA)
  • San Mateo County (CA)
  • Santa Barbara County (CA)
  • Santa Clara County (CA)
  • Santa Cruz County (CA)
  • Shasta County (CA)
  • Solano County (CA)
  • Sonoma County (CA)
  • Stanislaus County (CA)
  • Tuolumne County (CA)
  • Yolo County (CA)
  • Yuba County (CA)
  • Arapahoe County (CO)
  • Archuleta County (CO)
  • City of Arvada (CO)
  • City of Aurora (CO)
  • City of Boulder (CO)
  • City of Fort Collins (CO)
  • City of Greeley (CO)
  • City of Loveland (CO)
  • City of Westminster (CO)
  • Gilpin County (CO)
  • Gunnison County (CO)
  • Jefferson County (CO)
  • Larimer County (CO)
  • Mesa County (CO)
  • Pitkin County (CO)
  • Pubelo County (CO)
  • San Miguel County (CO)
  • City of Honolulu (HI)
  • Arlington County (VA)
  • Durham County (NC)

Requesting New Location Data

If you need addresses for a specific city, state, or postal code that is not yet included in the dataset, please open a new GitHub Issue describing your request.

Requests will be evaluated and added gradually, in order to:

  • Keep the library size small and lightweight.
  • Ensure quality and functionality remain stable across versions.

We appreciate your suggestions and contributions!

Can you add addresses for my country?

If OpenAddresses covers it, it can be considered. If it does not, the answer is no, and the reason is worth explaining.

Every address here is real, published by a government, and in the public domain. That is the only thing this library promises, and it is what makes the addresses geocode. OpenAddresses is the project that collects that data, so its coverage is the ceiling on what can be added here. You can check a country yourself by looking for its two-letter code under sources/ — 67 countries are covered, including us, jp, de and br. Much of Southeast Asia, Africa and South Asia is not, because those governments do not publish open address data.

OpenStreetMap is not an alternative. It is licensed under ODbL, which is share-alike, and mixing it in would break the public-domain guarantee for everyone downstream.

Note that the dataset is US-only today: state is a two-letter code and coordinates are validated against a US bounding box. Adding the first non-US country therefore means a schema change, with a country field and a region concept that is not a US state. That is a real conversation to have, but it needs the data to exist first.

If you need addresses that merely look plausible rather than addresses that are real, use Faker instead — Faker("id_ID").address() and its many other locales generate correctly formatted addresses for most countries. Faker's addresses are invented; this library's are not. Pick whichever your test actually needs.

Adding the addresses

Maintainers fulfil a request by sampling from the matching OpenAddresses GeoJSON file:

$ python data/add_addresses.py nc.geojson --state NC --count 50 --seed 7 \
    --cities "Charlotte,Raleigh,Durham,Asheville,Wilmington"
Selected 50 addresses for NC
  Asheville   3
  Charlotte   12
  Durham      12
  Raleigh     12
  Wilmington  11

Wrote 3300 addresses to src/random_address/data/addresses-us.jsonl

--cities splits the count evenly between the cities you name, which is how a statewide source is turned into a handful of recognizable cities rather than fifty scattered rural rows. A city that cannot supply its share does not shrink the sample: above, Asheville only had three usable addresses, and the other four cities absorbed the shortfall. Without --cities, the sample is drawn from the whole file.

Records are validated before being sampled, so a run yields the number of usable addresses you asked for. A record is rejected when it has no street number or street, no city (pass --city to supply one for sources that omit it, as some do), a malformed postal code, coordinates outside the US, or a region that disagrees with --state. Records already in the dataset are skipped as duplicates, so re-running a source is safe.

Sources vary. Many publish ALL CAPS, abbreviated data, so 212 HERON CT SW in BOLIVIA is normalized to 212 Heron Court Southwest in Bolivia on the way in. Many publish no postal code at all, in which case every record is rejected and you need a different source; the statewide source for a state usually carries one.

Use --dry-run to preview, and --replace-state to re-import a state from a better source.

Because the dataset is one address per line, sorted, a request like this lands as a reviewable diff of 50 added lines. Please credit the source under Attribution when you add data.

Contributing

Contributions are welcome! Feel free to submit pull requests, report issues, or suggest improvements.

Developing Random Address

To install random-address along with the tools needed to develop and run tests, run the following in your virtualenv:

$ pip install -e ".[dev]"

Then:

$ pytest              # run the tests
$ ruff check .        # lint
$ ruff format .       # format

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

random_address-2.1.0.tar.gz (105.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

random_address-2.1.0-py3-none-any.whl (93.3 kB view details)

Uploaded Python 3

File details

Details for the file random_address-2.1.0.tar.gz.

File metadata

  • Download URL: random_address-2.1.0.tar.gz
  • Upload date:
  • Size: 105.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for random_address-2.1.0.tar.gz
Algorithm Hash digest
SHA256 39b6618293cab90114e622fa87f9f9d449b8fc5aee5381cb0246e80c6bc12812
MD5 566c932dc4756b63a3821b87d58dc6cd
BLAKE2b-256 ad448bd542a7c4b7ee37bf9b9c3f72502bb753fc32311477485d02b45f2d7ccc

See more details on using hashes here.

Provenance

The following attestation bundles were made for random_address-2.1.0.tar.gz:

Publisher: publish.yml on neosergio/random-address

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file random_address-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: random_address-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 93.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for random_address-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0650cd6e9d870699a270e736515f24eb715a0a21bb73b3901e7dad3e63d0c335
MD5 b3550e6bfb2c0173893cfd2805bec3ab
BLAKE2b-256 bd263df7fdc0161f5b8bd7418797c81a02b9b96ad112ac5b258835c223a3b62e

See more details on using hashes here.

Provenance

The following attestation bundles were made for random_address-2.1.0-py3-none-any.whl:

Publisher: publish.yml on neosergio/random-address

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page