Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/minho42/australian-addresses


https://github.com/minho42/australian-addresses

australian-addresses

Last synced: 16 days ago
JSON representation

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 uv

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