June 26, 2014 16:16
scottw
We don’t have specific client libraries for the API but most languages easily support http calls.
I was asked specifically about Python and found this library which looks like a breeze to use:
http://www.python-requests.org/en/latest/user/quickstart
For example an api call would be:
>>> import requests
>>> r = requests.get(‘http://api.weatherunlocked.com/api/trigger/51.50,-0.12/current temperature gt 6’)
>>> r.json()
We will get language specific examples on the site as soons as we can.
In the meantime I hope this helps all you Python fans.
Scott
weatherunlocked.com