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

https://github.com/eddmash/ukpostcodevalidator

Validates UK post code
https://github.com/eddmash/ukpostcodevalidator

format postal-code python uk validation

Last synced: about 1 year ago
JSON representation

Validates UK post code

Awesome Lists containing this project

README

          

[![Documentation Status](https://readthedocs.org/projects/ukpostcodevalidator/badge/?version=latest)](http://ukpostcodevalidator.readthedocs.io/en/latest/?badge=latest)
[![Build Status](https://travis-ci.org/eddmash/ukpostcodevalidator.svg?branch=master)](https://travis-ci.org/eddmash/ukpostcodevalidator)

This library validates the uk postal code based on the formating rules found on this article

Documentation can be found here

Installation
------------
You can install `ukpostcodevalidator` using pip:

pip install ukpostcodevalidator

Usage
-----
To validate the postal code for UK just invole the validate method on the Uk class as show below:

>>> from ukpostcodevalidator import validator
>>> validator.Uk.validate("AA9A 9AA")

Running Tests
-------------
To run tests for the project run the following command while inside the root directory ukpostcodevalidator

py.test tests.py