Skip to content

Instantly share code, notes, and snippets.

@springcoil
Last active January 22, 2021 12:48
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save springcoil/21d63aef85a3739655a0 to your computer and use it in GitHub Desktop.
Save springcoil/21d63aef85a3739655a0 to your computer and use it in GitHub Desktop.
A simple Python script to extract data from the Met Office DataPoint API
import urllib.request
import json
URL = ('http://datapoint.metoffice.gov.uk/public/data/val/wxfcs/all/json/352817'
+ '?res=3hourly&key=*api_key*')
class Manager(object):
def __init__(self, api_key=""):
self.api_key = api_key
def _call_api(self, path):
"""
Private method
:param path: This is our URL string
:return: returns a decoded response from the URL
"""
response = urllib.request.urlopen(path)
try:
data = response.read()
except ValueError:
raise Exception("DataPoint has not returned any data" +
"this could be due to an incorrect API key")
datadecoded = data.decode('utf-8')
return datadecoded
def _convert_to_dictionary(self):
"""
Converts JSON data to a dictionary object
:param self:
:return: python dictionary
"""
json_from_api = self._call_api(path=URL)
data_dict = json.loads(json_from_api)
if not isinstance(data_dict, dict):
raise ValueError("Not successfully converted into a dictionary, check API key")
return data_dict
def _extraction_from_json(self):
"""
A function for extracting from the JSON of the Datapoint api
This is a heavily nested JSON API
:return: (date, day, time, temperature, location)
"""
data_dic = self._convert_to_dictionary()
date = data_dic['SiteRep']['DV']['dataDate']
period = data_dic['SiteRep']['DV']['Location']['Period'][0]
day = period['value']
time = period['Rep'][0]['$']
temperature = int((period['Rep'][0]['T']))
location = (data_dic['SiteRep']['DV']['Location']['name'])
return (date, day, time, temperature, location)
def extract_from_api(self):
"""
Calls all private functions
:return:
"""
convert_to_dict = self._convert_to_dictionary()
json_extract = self._extraction_from_json
return json_extract
if __name__ == "__main__":
print("Current Weather in Newry", Manager().extract_from_api())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment