Metadata-Version: 2.4
Name: random-address
Version: 2.0.0
Summary: Retrieve real random US addresses that geocode successfully
Author-email: Sergio Infante <raulsergio9@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/neosergio/random-address
Project-URL: Repository, https://github.com/neosergio/random-address
Project-URL: Issues, https://github.com/neosergio/random-address/issues
Project-URL: Changelog, https://github.com/neosergio/random-address/blob/main/CHANGELOG.md
Keywords: address,random,fake-data,test-data,fixtures,geocoding,openaddresses
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Provides-Extra: dev
Requires-Dist: build>=1.2; extra == "dev"
Requires-Dist: pytest>=8; extra == "dev"
Requires-Dist: ruff>=0.6; extra == "dev"
Requires-Dist: twine>=6; extra == "dev"
Dynamic: license-file

# Random Address

This is a tool to retrieve a real address from a list of real of random addresses that geocode successfully (tested on Google's Geocoding API service). The address data comes from the OpenAddresses project, and all the addresses are in the public domain. The addresses are deliberately not linked to people or businesses; the only guarantee is that they are real addresses that geocode successfully.

The addresses were pulled from OpenAddress where the "Required attribute" field was present and not "Yes". See "Attribution" below for a list of sources (also included in each data file).

This project was inspired by [Real, Random Address Data (RRAD)](https://github.com/EthanRBrown/rrad) project.

![PyPI](https://img.shields.io/pypi/v/random-address)
![PyPI - License](https://img.shields.io/pypi/l/random-address)
![PyPI - Downloads](https://img.shields.io/pypi/dm/random-address)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/random-address)
![PyPI - Status](https://img.shields.io/pypi/status/random-address)


## Installation

Run the following to install:

```bash
$ pip install random-address
```

Requires Python 3.10 or newer.

## Usage

```python
>>> 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.

```python
>>> 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:

```python
>>> 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.

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

### Several addresses at once

```python
>>> 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

```python
>>> 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': 3270, 'unique_states': 17, 'unique_cities': 421, 'unique_postal_codes': 692}
```

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

## Command line

```bash
$ 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](https://openaddresses.io/) 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)

## 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](https://github.com/neosergio/random-address/issues) 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!


## 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:

```bash
$ pip install -e ".[dev]"
```

Then:

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