australian-postcodes
List of Australian Post Codes and Suburbs
File Explorer
- 0.csv
- 1.csv
- 2.csv
- 3.csv
- 4.csv
- 5.csv
- 6.csv
- 7.csv
- 8.csv
- 9.csv
- ACT.csv
- ACT.json
- ACT.md
- NSW.csv
- NSW.json
- NSW.md
- NT.csv
- NT.json
- NT.md
- QLD.csv
- QLD.json
- QLD.md
- SA.csv
- SA.json
- SA.md
- TAS.csv
- TAS.json
- TAS.md
- VIC.csv
- VIC.json
- VIC.md
- WA.csv
- WA.json
- WA.md
- ACT.csv
- NSW.csv
- NT.csv
- QLD.csv
- SA.csv
- TAS.csv
- VIC.csv
- WA.csv
- postcodes-lookup.csv
- README.md
- postcodes.go
- go.mod
- main.go
- README.md
- australian-postcodes.csv
- index.d.ts
- index.js
- package.json
- README.md
- __init__.py
- australian-postcodes.csv
- __init__.py
- cli.py
- pyproject.toml
- README.md
- australian-postcodes.csv
- version.rb
- australian_postcodes.rb
- australian_postcodes.gemspec
- Gemfile
- README.md
- .gitignore
- australian-postcodes-2021-04-23.csv
- australian-postcodes-2021-04-23.numbers
- australian-postcodes-2021-04-23.tsv
- australian-postcodes-2021-04-23.xlsx
- australian-postcodes-2026-05-27.csv
- australian-postcodes-2026-05-27.json
- australian-postcodes-2026-05-27.tsv
- australian-postcodes.csv
- australian-postcodes.json
- australian-postcodes.tsv
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
brew install
View Details ▼
brew install
Install a Homebrew formula or cask.
brew install {{formula|cask}}
Install a formula/cask:
brew install {{[-s|--build-from-source]}} {{formula}}
Build and install a formula from source (dependencies will still be installed from bottles):
brew install {{[-n|--dry-run]}} {{formula|cask}}
Download the manifest, print what would be installed but don't actually install anything:
brew tap
View Details ▼
brew tap
Tap a Homebrew formula repository. If no arguments are provided, list all installed Homebrew taps.
brew tap
List installed Homebrew taps:
brew tap {{github_username}}/{{github_repository_name}}
Tap a Git repository hosted on GitHub:
brew tap {{username}}/{{repository_name}} {{git_clone_url}}
Tap a Git repository hosted outside of GitHub:
gem
View Details ▼
gem
A package manager for the Ruby programming language.
gem search {{regex}} {{[-a|--all]}}
Search for remote gem(s) and show all available versions:
gem install {{gem_name}}
Install the latest version of a gem:
gem install {{gem_name}} {{[-v|--version]}} {{1.0.0}}
Install a specific version of a gem:
go install
View Details ▼
go install
Compile and install packages named by the import paths.
go install
Compile and install the current package:
go install {{path/to/package}}
Compile and install a specific local package:
go install {{golang.org/x/tools/gopls}}@{{latest}}
Install the latest version of a program, ignoring `go.mod` in the current directory:
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
