package supports validating and formatting postcodes for the UK
- Free software: MIT license
- Documentation: https://myselfdesai.github.io/ideal_ukpostcode
- PyPI: https://pypi.python.org/pypi/ideal_ukpostcode
package supports validating and formatting postcodes for the UK. The details of which postcodes are valid and which are the parts they consist of can be found at wiki
To install ideal_ukpostcode, run this command in your terminal:
pip install ideal_ukpostcode
This is the preferred method to install ideal_ukpostcode, as it will always install the most recent stable release.
If you don't have pip installed, this Python installation guide can guide you through the process.
The sources for ideal_ukpostcode can be downloaded from the Github repo.
You can clone the public repository:
git clone git://github.com/myselfdesai/ideal_ukpostcode
To use ideal_ukpostcode in a project:
it gives boolean result True or False
import ideal_ukpostcode
ideal_ukpostcode.validate("EC1A 1BB")
format(area, district, sector, unit)
import ideal_ukpostcode
ideal_ukpostcode.format("EC","1A","1","BB")
install dev dependencies
pip install -r requirements_dev.txt
In the root folder, execute :
pytest
This package was created with Cookiecutter and the giswqs/pypackage project template.