Skip to main content

what3words Python API wrapper library

Project description

what3words w3w-python-wrapper Build Status

A Python library to use the what3words REST API.

Tested with Python 2.7, 3.4, 3.5, 3.6 (check travis-ci.org build)

Overview

The what3words Python library gives you programmatic access to

  • convert a 3 word address to coordinates
  • convert coordinates to a 3 word address
  • autosuggest functionality which takes a slightly incorrect 3 word address, and suggests a list of valid 3 word addresses
  • obtain a section of the 3m x 3m what3words grid for a bounding box.
  • determine the currently support 3 word address languages.

Authentication

To use this library you’ll need an API key, please visit https://what3words.com/select-plan and sign up for an account.

Installation

PyPi Install

To install what3words, simply:

$ pip install what3words

GitHub Install

Installing the latest version from Github:

$ git clone https://github.com/what3words/w3w-python-wrapper.git
$ cd w3w-python-wrapper
$ python setup.py install

Convert To Coordinates

This function takes the words parameter as a string of 3 words 'table.book.chair'

The returned payload from the convert-to-coordinates method is described in the what3words REST API documentation.

Convert To 3 Word Address

This function takes the latitude and longitude:

  • 2 parameters: lat=0.1234, lng=1.5678

The returned payload from the convert-to-3wa method is described in the what3words REST API documentation.

AutoSuggest

Returns a list of 3 word addresses based on user input and other parameters.

This method provides corrections for the following types of input error:

  • typing errors
  • spelling errors
  • misremembered words (e.g. singular vs. plural)
  • words in the wrong order

The autosuggest method determines possible corrections to the supplied 3 word address string based on the probability of the input errors listed above and returns a ranked list of suggestions. This method can also take into consideration the geographic proximity of possible corrections to a given location to further improve the suggestions returned.

Input 3 word address

You will only receive results back if the partial 3 word address string you submit contains the first two words and at least the first character of the third word; otherwise an error message will be returned.

Clipping and Focus

We provide various clip policies to allow you to specify a geographic area that is used to exclude results that are not likely to be relevant to your users. We recommend that you use the clip parameter to give a more targeted, shorter set of results to your user. If you know your user’s current location, we also strongly recommend that you use the focus to return results which are likely to be more relevant.

In summary, the clip policy is used to optionally restrict the list of candidate AutoSuggest results, after which, if focus has been supplied, this will be used to rank the results in order of relevancy to the focus.

https://docs.what3words.com/api/v3/#autosuggest

The returned payload from the autosuggest method is described in the what3words REST API documentation.

Grid Section

Returns a section of the 3m x 3m what3words grid for a bounding box.

Available Languages

Retrieves a list of the currently loaded and available 3 word address languages.

The returned payload from the available-languages method is described in the what3words REST API documentation.

isPossible3wa

This method takes a string as a parameter and returns whether the string is in the format of a 3WA (eg “filled.count.soap”). Return type is boolean. NOTE: Does not check if it is an actual existing 3WA.

isPossible3wa(“filled.count.soap”) returns True
isPossible3wa(“not a 3wa”) returns False
isPossible3wa(“not.3wa address”) returns False

findPossible3wa

This method takes a string as a parameter and searches the string for any possible instances of a 3WA - e.g. "leave in my porch at word.word.word." Likely to be the main method that is called on the delivery notes. Returns an array of matched items. Returns an empty array if no matches are found. NOTE: Does not check if it is an actual existing 3WA.

findPossible3wa(“Please leave by my porch at filled.count.soap”) will return [‘filled.count.soap’]
findPossible3wa(“Please leave by my porch at filled.count.soap or deed.tulip.judge”) will return [‘filled.count.soap’, ‘deed.tulip.judge’]
findPossible3wa(“Please leave by my porch at”) will return []

isValid3wa

This method takes a string as a parameter and first passes it through the W3W regex filter (akin to calling isPossible3wa() on the string) and then calls the W3W api to verify it is a real 3WA.

isValid3wa(“filled.count.soap”) returns True
isValid3wa(“filled.count.”) returns False
isValid3wa(“python.is.cool”) returns False

Code examples

W3W-API-KEY

For safe storage of your API key on your computer, you can define that API key using your system’s environment variables.

$ export W3W_API_KEY=<Secret API Key>

Convert to coordinates

import what3words
from os import environ
api_key = environ['W3W_API_KEY']
w3w = what3words.Geocoder(api_key)
res = w3w.convert_to_coordinates('prom.cape.pump')
print(res)

Convert to 3 word address

import what3words
from os import environ
api_key = environ['W3W_API_KEY']
w3w = what3words.Geocoder(api_key)
res = w3w.convert_to_3wa(what3words.Coordinates(51.484463,-0.195405))
print(res)

Issues

Find a bug or want to request a new feature? Please let us know by submitting an issue.

Contributing

Anyone and everyone is welcome to contribute.

  1. Fork it (https://github.com/what3words/w3w-python-wrapper and click "Fork")
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Revision History

  • v3.3.0 30/09/24 - Support locale, update regex, format and tests
  • v3.2.0 08/03/22 - Added regex functions
  • v3.1.1 04/10/19 - Fix bugs related to setting default language value, and autosuggest input-type
  • v3.1.0 29/08/19 - Support 'prefer-land' parameter for Autosuggest calls
  • v3.0.2 16/07/19 - Include User-Agent in API requests
  • v3.0.0 04/02/19 - Updated wrapper to use what3words API v3
  • v2.2.1 08/09/17 - Python 3 setup install fixed thanks to @joedborg
  • v2.2.0 07/09/17 - Python 3 support, thanks to @joedborg
  • v2.1.1 07/09/17 - update README : this library is compatible with Python 2
  • v2.1.0 28/03/17 - Added multilingual version of autosuggest and standardblend
  • v2.0.2 27/10/16 - Published on PyPi
  • v2.0.0 10/06/16 - Updated wrapper to use what3words API v2

Licensing

The MIT License (MIT)

A copy of the license is available in the repository's license file.

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

what3words-3.3.0.tar.gz (11.2 kB view details)

Uploaded Source

Built Distribution

what3words-3.3.0-py2.py3-none-any.whl (8.6 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file what3words-3.3.0.tar.gz.

File metadata

  • Download URL: what3words-3.3.0.tar.gz
  • Upload date:
  • Size: 11.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.16

File hashes

Hashes for what3words-3.3.0.tar.gz
Algorithm Hash digest
SHA256 610a45be921889fe54d25b9bbf14308bd65650e74482ef6c87c39a8587c5f7dd
MD5 b44b22e14819a095abfb6890947ebd24
BLAKE2b-256 fadc0305ed54329933327d6fd78eea4943d76dc84780b07c403bec68040d46ee

See more details on using hashes here.

File details

Details for the file what3words-3.3.0-py2.py3-none-any.whl.

File metadata

  • Download URL: what3words-3.3.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 8.6 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.16

File hashes

Hashes for what3words-3.3.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 24fe1afe81c2e02ab2aa6aecbc3b12b01f54a4e49fd1b4849971362d1e327be0
MD5 6a9550d85f2fda26dfc3f79ee005acdc
BLAKE2b-256 ac9e9ab05c00f8f80de89ed119ae5b3a18f6fe1a43363c35eff6c3d2e9835a9a

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