🗺 Light Photon client written in Python
pip install pyphoton
If you need some code ready to use, spike.py is a good starting point
Python Photon client allows you to make queries to Photon service easily.
from pyphoton import Photon
client = Photon()
location = client.query('berlin', limit=1)
print (location.city)
print (location.latitude)
print (location.longitude)
Photon
object accepts two parameters:
host
: the url where Photon instance is running (default https://photon.komoot.io
)language
: the preferred language (default is en
)You can pass the query
method the following parameters along the query string:
limit
: limit number of resultslanguage
: force language in the querylatitude
and longitude
: use them to search with priority to a geo positionlocation_bias_scale
: use to search with location biasosm_tags
: a string
or list
containing osm tags filtersbbox
: a string
with comma-separated values or list
containing bounding box coordinatesLocation
object (or objects if you don't set limit=1) is generated from the json returned and contains all the information you need: name, state, street, city, osm attributes, extent_from.latitude, extent_from.longitude, extent_to.latitude, extent_to.longitude ...
Python Photon client allows you to make reverse search.
from pyphoton import Photon
client = Photon()
locations = client.reverse(latitude=52, longitude=10)
for location in locations:
print ('🌉 Location #{0}\n{1}\n'.format(location.osm_id, location))
You can pass to the reverse
method the following parameters:
latitude
and longitude
: use them to search using a geo positionlimit
: limit number of resultsIf there's an error in your query, a PhotonException
will be raised
from pyphoton import Photon
from pyphoton.errors import PhotonException
client = Photon()
try:
location = client.query('', limit=1)
except PhotonException as ex:
print (ex)
pip install -r requirements-dev.txt
make test