Metadata-Version: 2.4
Name: censiq
Version: 0.1.1
Summary: Estimate median home value within a radius using US Census data
Author: Nathaniel Scholze
License-Expression: MIT
Keywords: census,geocoding,home-value,housing,real-estate,us
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: GIS
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Dynamic: license-file

# Censiq

Estimate the median home value within a radius of a given US address using Census data.

## Install
```bash
pip install censiq
```

## CLI
```bash
censiq "1600 Pennsylvania Ave NW, Washington, DC" --radius 50
```

## Python
```python
from censiq import estimate_median_home_value

result = estimate_median_home_value("1600 Pennsylvania Ave NW, Washington, DC")
print(result)
```

## License

MIT
