Python client to connect to Postcodes.io webservice
- Free software: MIT license
- Documentation: https://postcodes-io.readthedocs.io.
- Supports python 3.x (not yet python 2.x, sorry!)
- Response in Python native list and dict types
- Supports free http://postcodes.io REST service and self-hosted service (See documentation for self-hosted installation details)
Install python package:
$ pip install postcodes_io
$ python
Pull docker image:
docker pull randomvariable/docker-postcodes.io
Run docker container as a daemon:
docker run -p 8000:8000 -d randomvariable/docker-postcodes.io
Execute API using hosts
# Connects to self hosted PostcodesIO instance.
from postcodes_io import PostcodesIO
postcode = PostcodesIO('http://localhost:8000').get('SW1A 1AA')
- Add more endpoints
- Documentation
- Proper isolated unit tests