Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Extract values from JSON in Python

Tags:

python

json

This is a reply from the Google Distance Matrix. I would like to have only the two value's as an output and I'm trying to extract it with Python.

{
   "destination_addresses" : [ "Hoorn, Nederland" ],
   "origin_addresses" : [ "Amsterdam, Nederland" ],
   "rows" : [
      {
         "elements" : [
            {
               "distance" : {
                  "text" : "45,0 km",
                  "value" : 44952
               },
               "duration" : {
                  "text" : "40 min.",
                  "value" : 2423
               },
               "status" : "OK"
            }
         ]
      }
   ],
   "status" : "OK"
}

This is what I've tried so far. I want to have a reply from Google every 15 minutes and write it to a file. But in the file I only want the value for distance and duration and I have no luck in achieving that. I'm not sure if the reply from Google is proper JSON so I've tried json.loads but it did not allow me to extract certain parts from the reply. Any ideas?

import requests
import json
import datetime
from apscheduler.schedulers.blocking import BlockingScheduler

uri = "https://maps.googleapis.com/maps/api/distancematrix/json?origins=Amsterdam&destinations=Hoorn&mode=driving&key="
now = datetime.datetime.now()

def job():
    datum = now.strftime("%Y-%m-%d %H:%M")
    print datum
    text_file = open('tijdsduur.txt', 'a')
    batch = requests.get(uri)
    data = batch.text
    jdata = json.loads(data)
    print jdata['elements']['distance']['value']
    text_file.write(data)
    text_file.write('\n')
    text_file.close()

job()
scheduler = BlockingScheduler()
scheduler.add_job(job, 'interval', minutes=15)
scheduler.start()

Error when I try json.loads: KeyError 'elements'

like image 543
Donald Avatar asked Sep 07 '25 10:09

Donald


1 Answers

json.loads will take a string paramater. The 's' in the loads is for string.

import json
a="""{
   "destination_addresses" : [ "Hoorn, Nederland" ],
   "origin_addresses" : [ "Amsterdam, Nederland" ],
   "rows" : [
      {
         "elements" : [
            {
               "distance" : {
                  "text" : "45,0 km",
                  "value" : 44952
               },
               "duration" : {
                  "text" : "40 min.",
                  "value" : 2423
               },
               "status" : "OK"
            }
         ]
      }
   ],
   "status" : "OK"
}"""

b = json.loads(a)
dist,dur = b['rows'][0]['elements'][0]['distance'], b['rows'][0]['elements'][0]['duration']
print dist
print dur

Output:

{u'text': u'40 min.', u'value': 2423}
{u'text': u'45,0 km', u'value': 44952}

Note that:

  • str(json_object) wraps strings in single quotes, which is not valid JSON.
  • So if you have a json object which you had earlier converted to string using str() and now you want to convert it back to JSON then you can work around like this:

    json.loads(json.dumps(str(json_object)))
    
like image 166
Mohammad Yusuf Avatar answered Sep 09 '25 01:09

Mohammad Yusuf