Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/minho42/australian-addresses
https://github.com/minho42/australian-addresses
australian-addresses
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/minho42/australian-addresses
- Owner: minho42
- License: mit
- Created: 2024-04-25T13:31:16.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-04-25T13:59:48.000Z (8 months ago)
- Last Synced: 2024-04-25T14:55:37.062Z (8 months ago)
- Topics: australian-addresses
- Language: Python
- Homepage:
- Size: 10.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Australian addresses
addresses (street,suburb,region,postcode) uniquely identified by the combination of street, suburb, and region.
## download data
https://www.kaggle.com/datasets/sreekanthvasireddy/australia-address
## prep
```shell
pip install uvuv venv
source .venv/bin/activate
uv pip install -r requirements.in
```## input
`Australia Address.csv`
```csv
,unit_type,number,street,suburb,region,postcode,lat,lon
0,UNIT 39,60,JOHN GORTON DRIVE,COOMBS,ACT,2611.0,-35.321,149.04
```## run
```shell
python main.py
```## output
`output.csv`
```csv
street,suburb,region,postcode
JOHN GORTON DRIVE,COOMBS,ACT,2611
```