Skip to main content

A Python client for the Postcodes.io API used for UK postcodes

Project description

UKPostCodeIO Python Library

License

Introduction

UKPostCodeIO is a Python client library for the Postcodes.io API, a free and open-source UK postcode lookup and geocoder. This library provides convenient access to the Postcodes.io API endpoints, allowing developers to integrate postcode data and geolocation services into their Python applications seamlessly.

Features

  • Postcode Lookup: Retrieve detailed information about a specific postcode.
  • Bulk Postcode Lookup: Lookup multiple postcodes in a single request.
  • Reverse Geocoding: Find nearest postcodes to given coordinates.
  • Bulk Reverse Geocoding: Reverse geocode multiple coordinates.
  • Postcode Validation: Validate the format and existence of a postcode.
  • Autocomplete: Get postcode suggestions based on partial input.
  • Random Postcode: Retrieve a random postcode.
  • Outcode Services: Lookup and reverse geocode outcodes (the first part of a postcode).
  • Scottish Postcode Lookup: Access data specific to Scottish postcodes.
  • Terminated Postcode Lookup: Retrieve information on terminated postcodes.
  • Place Services: Lookup and query places by code or name.

Table of Contents

Installation

Install the library using pip:

pip install ukpostcodeio

Note: Replace ukpostcodeio with the actual package name if it's different when published to PyPI.

Alternatively, you can install it directly from the source:

git clone https://github.com/ymrohit/ukpostcodeio.git
cd ukpostcodeio
pip install .

Usage

Initializing the Client

from ukpostcodeio.client import UKPostCodeIO

# Initialize the client with default settings
postcode_client = UKPostCodeIO()

# Initialize the client with custom timeout and retries
postcode_client = UKPostCodeIO(timeout=10, max_retries=5)

Lookup Postcode

Retrieve information about a specific postcode.

result = postcode_client.lookup_postcode("SW1A 1AA")
print(result)

Bulk Lookup Postcodes

Lookup multiple postcodes in a single request.

postcodes = ["SW1A 1AA", "EC1A 1BB", "W1A 0AX"]
results = postcode_client.bulk_lookup_postcodes(postcodes)
print(results)

Reverse Geocode

Find the nearest postcodes to a given longitude and latitude.

longitude = -0.1278  # Longitude for London
latitude = 51.5074   # Latitude for London

results = postcode_client.reverse_geocode(longitude, latitude)
print(results)

Bulk Reverse Geocode

Reverse geocode multiple coordinates.

geolocations = [
    {"longitude": -0.1278, "latitude": 51.5074},
    {"longitude": -0.1425, "latitude": 51.5010}
]

results = postcode_client.bulk_reverse_geocode(geolocations)
print(results)

Postcode Validation

Check if a postcode is valid.

is_valid = postcode_client.validate_postcode("SW1A 1AA")
print(is_valid)  # True

is_valid = postcode_client.validate_postcode("INVALID")
print(is_valid)  # False

Nearest Postcodes

Find the nearest postcodes to a given postcode.

results = postcode_client.nearest_postcodes("SW1A 1AA")
print(results)

Autocomplete Postcode

Get postcode suggestions based on partial input.

suggestions = postcode_client.autocomplete_postcode("SW1A")
print(suggestions)

Random Postcode

Retrieve a random postcode.

random_postcode = postcode_client.random_postcode()
print(random_postcode)

# Retrieve a random postcode within a specific outcode
random_postcode = postcode_client.random_postcode(outcode="SW1A")
print(random_postcode)

Outcode Services

Lookup Outcode

Get information about an outcode.

outcode_info = postcode_client.lookup_outcode("SW1A")
print(outcode_info)

Reverse Geocode Outcode

Find the nearest outcodes to given coordinates.

results = postcode_client.reverse_geocode_outcode(-0.1278, 51.5074)
print(results)

Nearest Outcodes

Find the nearest outcodes to a given outcode.

results = postcode_client.nearest_outcodes("SW1A")
print(results)

Scottish Postcode Lookup

Retrieve data specific to a Scottish postcode.

scottish_data = postcode_client.scottish_postcode_lookup("EH1 1YZ")
print(scottish_data)

Terminated Postcode Lookup

Get information about a terminated postcode.

terminated_postcode_info = postcode_client.terminated_postcode_lookup("EX16 5BL")
print(terminated_postcode_info)

Place Services

Lookup Place

Find a place by its code.

place_info = postcode_client.lookup_place("osgb4000000074564391")
print(place_info)

Query Place

Search for places by name.

places = postcode_client.query_place("London")
print(places)

Random Place

Retrieve a random place.

random_place = postcode_client.random_place()
print(random_place)

Closing the Client

It's good practice to close the client session when done.

postcode_client.close()

Or use it as a context manager:

with UKPostCodeIO() as postcode_client:
    result = postcode_client.lookup_postcode("SW1A 1AA")
    print(result)

Error Handling

The library defines custom exceptions to help handle different error scenarios:

  • PostcodesIOError: Base exception class for all Postcodes.io errors.
  • PostcodesIOHTTPError: Raised for HTTP errors (e.g., 404 Not Found, 500 Internal Server Error).
  • PostcodesIOTimeoutError: Raised when a request times out.
  • PostcodesIOValidationError: Raised for validation errors.
  • PostcodesIONetworkError: Raised for network-related errors (e.g., connection errors).

Handling Exceptions

from ukpostcodeio.exceptions import (
    PostcodesIOError,
    PostcodesIOHTTPError,
    PostcodesIOTimeoutError,
    PostcodesIONetworkError
)

try:
    result = postcode_client.lookup_postcode("INVALID")
except PostcodesIOHTTPError as e:
    print(f"HTTP Error: {e.status_code} - {e.error_message}")
except PostcodesIOTimeoutError:
    print("The request timed out.")
except PostcodesIONetworkError:
    print("A network error occurred.")
except PostcodesIOError as e:
    print(f"An error occurred: {e}")

Common Error Scenarios

  • Invalid Postcode: Raises PostcodesIOHTTPError with a 404 status code.
  • Network Issues: Raises PostcodesIONetworkError if there's a connection problem.
  • Timeouts: Raises PostcodesIOTimeoutError if the request exceeds the specified timeout.
  • Invalid Parameters: Raises PostcodesIOValidationError if parameters are invalid.

Testing

The library includes a suite of unit tests to ensure functionality.

Running Tests

  1. Install the testing dependencies:
pip install -r requirements-dev.txt
  1. Run the tests:
python -m unittest discover Tests

Note: Ensure that you have network connectivity when running the tests, as they make real API calls.

Contributing

Contributions are welcome! Please follow these steps:

  1. Fork the repository.
  2. Create a new branch: git checkout -b feature/your-feature-name.
  3. Make your changes and commit them: git commit -m 'Add some feature'.
  4. Push to the branch: git push origin feature/your-feature-name.
  5. Submit a pull request.

Please ensure your code passes all tests and adheres to the project's coding standards.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

  • This library utilizes the Postcodes.io API, an open-source project that provides UK postcode data and geolocation services.
  • Special thanks to the Postcodes.io team for their comprehensive API and open data initiatives.

Additional Notes

  • Rate Limiting: Postcodes.io does not enforce rate limiting, but it's good practice to implement it on your side if you're making a large number of requests.
  • Data Accuracy: While the data is regularly updated, always cross-reference critical data with official sources.
  • API Changes: The library is designed to handle the current API endpoints. Keep an eye on the Postcodes.io documentation for any changes.

For any issues or questions, please open an issue on the GitHub repository.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ukpostcodeio-1.0.0.tar.gz (10.2 kB view details)

Uploaded Source

Built Distribution

ukpostcodeio-1.0.0-py3-none-any.whl (7.6 kB view details)

Uploaded Python 3

File details

Details for the file ukpostcodeio-1.0.0.tar.gz.

File metadata

  • Download URL: ukpostcodeio-1.0.0.tar.gz
  • Upload date:
  • Size: 10.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.10

File hashes

Hashes for ukpostcodeio-1.0.0.tar.gz
Algorithm Hash digest
SHA256 57b37dcf4d4ada2087045a8751fd8a9daeb763f46d3a9a5d0dd46200a8bf8fce
MD5 2f359d92f0dc120e29d5d21f1e1bf3c5
BLAKE2b-256 82d842abd93bc344884ba51b3dbff0e4d561747722599aa1539091a0a40d1a22

See more details on using hashes here.

File details

Details for the file ukpostcodeio-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for ukpostcodeio-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 595ed39c877f0ca318346cc372238e4f5e072a4f76d731f5b3b9ff628d6d9f83
MD5 fcac1c5b75b0415718cb321748a252dc
BLAKE2b-256 e0fa701ab7bea7972d46ddbe03a1c595a47a1ae033a7c7fbf9c90bc2b03bce44

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page