繁体   English   中英

尝试访问从文件读取的JSON数据结构中的数据

[英]Trying to access data in JSON data structure read from file

我有以下Python代码可读取JSON文件:

import json
from pprint import pprint
with open('traveladvisory.json') as json_data:
    print 'json data ',json_data
    d = json.load(json_data)
    json_data.close()

以下是使用此代码打开的“ traveladvisory.json”文件的一部分。 变量'd'确实打印出所有JSON数据。 但是我似乎无法正确地读取所有'country-eng'和'advisory-text'字段及其数据并将其打印出来的语法。 有人可以协助吗? 这是一部分json数据(对不起,无法很好地打印出来):

{
   "metadata":{
      "generated":{
         "timestamp":1475854624,
         "date":"2016-10-07 11:37:04"
      }
   },
   "data":{
      "AF":{
         "country-id":1000,
         "country-iso":"AF",
         "country-eng":"Afghanistan",
         "country-fra":"Afghanistan",
         "advisory-state":3,
         "date-published":{
            "timestamp":1473866215,
            "date":"2016-09-14 11:16:55",
            "asp":"2016-09-14T11:16:55.000000-04:00"
         },
         "has-advisory-warning":1,
         "has-regional-advisory":0,
         "has-content":1,
         "recent-updates-type":"Editorial change",
         "eng":{
            "name":"Afghanistan",
            "url-slug":"afghanistan",
            "friendly-date":"September 14, 2016 11:16 EDT",
            "advisory-text":"Avoid all travel",
            "recent-updates":"The Health tab was updated - travel health notices (Public Health Agency of Canada)."
         },
         "fra":{
            "name":"Afghanistan",
            "url-slug":"afghanistan",
            "friendly-date":"14 septembre 2016 11:16 HAE",
            "advisory-text":"\u00c9viter tout voyage",
            "recent-updates":"L'onglet Sant\u00e9 a \u00e9t\u00e9 mis \u00e0 jour - conseils de sant\u00e9 aux voyageurs (Agence de la sant\u00e9 publique du Canada)."
         }
      },
      "AL":{
         "country-id":4000,
         "country-iso":"AL",
         "country-eng":"Albania",
         "country-fra":"Albanie",
         "advisory-state":0,
         "date-published":{
            "timestamp":1473350931,
            "date":"2016-09-08 12:08:51",
            "asp":"2016-09-08T12:08:51.8301256-04:00"
         },
         "has-advisory-warning":0,
         "has-regional-advisory":1,
         "has-content":1,
         "recent-updates-type":"Editorial change",
         "eng":{
            "name":"Albania",
            "url-slug":"albania",
            "friendly-date":"September 8, 2016 12:08 EDT",
            "advisory-text":"Exercise normal security precautions (with regional advisories)",
            "recent-updates":"An editorial change was made."
         },
         "fra":{
            "name":"Albanie",
            "url-slug":"albanie",
            "friendly-date":"8 septembre 2016 12:08 HAE",
            "advisory-text":"Prendre des mesures de s\u00e9curit\u00e9 normales (avec avertissements r\u00e9gionaux)",
            "recent-updates":"Un changement mineur a \u00e9t\u00e9 apport\u00e9 au contenu."
         }
      },
      "DZ":{
         "country-id":5000,
         "country-iso":"DZ",
         "country-eng":"Algeria",
         "country-fra":"Alg\u00e9rie",
         "advisory-state":1,
         "date-published":{
            "timestamp":1475593497,
            "date":"2016-10-04 11:04:57",
            "asp":"2016-10-04T11:04:57.7727548-04:00"
         },
         "has-advisory-warning":0,
         "has-regional-advisory":1,
         "has-content":1,
         "recent-updates-type":"Full TAA review",
         "eng":{
            "name":"Algeria",
            "url-slug":"algeria",
            "friendly-date":"October 4, 2016 11:04 EDT",
            "advisory-text":"Exercise a high degree of caution (with regional advisories)",
            "recent-updates":"This travel advice was thoroughly reviewed and updated."
         },
         "fra":{
            "name":"Alg\u00e9rie",
            "url-slug":"algerie",
            "friendly-date":"4 octobre 2016 11:04 HAE",
            "advisory-text":"Faire preuve d\u2019une grande prudence (avec avertissements r\u00e9gionaux)",
            "recent-updates":"Les pr\u00e9sents Conseils aux voyageurs ont \u00e9t\u00e9 mis \u00e0 jour \u00e0 la suite d\u2019un examen minutieux."
         }
      },

   }
}

这为我工作:

for item in d['data']:
    print d['data'][item]['country-eng'], d['data'][item]['eng']['advisory-text']

假设d包含json数据

for country in d["data"]:
    print "Country :",country

    #country.get() gets the value of the key . the second argument is 
    #the value returned in case the key is not present

    print "country-eng : ",country.get("country-eng",0)
    print "advisory-text(eng) :",country["eng"].get("advisory-text",0)
    print "advisory-text(fra) :",country["fra"].get("advisory-text",0)

如果我理解您的问题。 方法如下:

import json

with open('traveladvisory.json') as json_data:
    d = json.load(json_data)
#    print(json.dumps(d, indent=4))  # pretty-print data read

for country in d['data']:
    print(country)
    print('  country-eng: {}'.format(d['data'][country]['country-eng']))
    print('  advisory-state: {}'.format(d['data'][country]['advisory-state']))

输出:

DZ
  country-eng: Algeria
  advisory-state: 1
AL
  country-eng: Albania
  advisory-state: 0
AF
  country-eng: Afghanistan
  advisory-state: 3

然后下面的代码适用于python2(如果您需要python3版本,请询问)您必须使用json 模块中load函数

#-*- coding: utf-8 -*-
import json                            # import the module we need

with open("traveladvisory.json") as f: # f for file
    d = json.load(f)                   # d is a dictionnary

for key in d['data']:
    print d['data'][key]['country-eng']
    print d['data'][key]['eng']['advisory-text']

在处理文件对象时,最好使用with语句。 这样做的好处是,即使在执行过程中引发了异常,文件在其套件完成后也将正确关闭。

另外,json是错误的,您必须从第98行删除逗号:

{
   "metadata":{
      "generated":{
         "timestamp":1475854624,
         "date":"2016-10-07 11:37:04"
      }
   },
   "data":{
      "AF":{
         "country-id":1000,
         "country-iso":"AF",
         "country-eng":"Afghanistan",
         "country-fra":"Afghanistan",
         "advisory-state":3,
         "date-published":{
            "timestamp":1473866215,
            "date":"2016-09-14 11:16:55",
            "asp":"2016-09-14T11:16:55.000000-04:00"
         },
         "has-advisory-warning":1,
         "has-regional-advisory":0,
         "has-content":1,
         "recent-updates-type":"Editorial change",
         "eng":{
            "name":"Afghanistan",
            "url-slug":"afghanistan",
            "friendly-date":"September 14, 2016 11:16 EDT",
            "advisory-text":"Avoid all travel",
            "recent-updates":"The Health tab was updated - travel health notices (Public Health Agency of Canada)."
         },
         "fra":{
            "name":"Afghanistan",
            "url-slug":"afghanistan",
            "friendly-date":"14 septembre 2016 11:16 HAE",
            "advisory-text":"\u00c9viter tout voyage",
            "recent-updates":"L'onglet Sant\u00e9 a \u00e9t\u00e9 mis \u00e0 jour - conseils de sant\u00e9 aux voyageurs (Agence de la sant\u00e9 publique du Canada)."
         }
      },
      "AL":{
         "country-id":4000,
         "country-iso":"AL",
         "country-eng":"Albania",
         "country-fra":"Albanie",
         "advisory-state":0,
         "date-published":{
            "timestamp":1473350931,
            "date":"2016-09-08 12:08:51",
            "asp":"2016-09-08T12:08:51.8301256-04:00"
         },
         "has-advisory-warning":0,
         "has-regional-advisory":1,
         "has-content":1,
         "recent-updates-type":"Editorial change",
         "eng":{
            "name":"Albania",
            "url-slug":"albania",
            "friendly-date":"September 8, 2016 12:08 EDT",
            "advisory-text":"Exercise normal security precautions (with regional advisories)",
            "recent-updates":"An editorial change was made."
         },
         "fra":{
            "name":"Albanie",
            "url-slug":"albanie",
            "friendly-date":"8 septembre 2016 12:08 HAE",
            "advisory-text":"Prendre des mesures de s\u00e9curit\u00e9 normales (avec avertissements r\u00e9gionaux)",
            "recent-updates":"Un changement mineur a \u00e9t\u00e9 apport\u00e9 au contenu."
         }
      },
      "DZ":{
         "country-id":5000,
         "country-iso":"DZ",
         "country-eng":"Algeria",
         "country-fra":"Alg\u00e9rie",
         "advisory-state":1,
         "date-published":{
            "timestamp":1475593497,
            "date":"2016-10-04 11:04:57",
            "asp":"2016-10-04T11:04:57.7727548-04:00"
         },
         "has-advisory-warning":0,
         "has-regional-advisory":1,
         "has-content":1,
         "recent-updates-type":"Full TAA review",
         "eng":{
            "name":"Algeria",
            "url-slug":"algeria",
            "friendly-date":"October 4, 2016 11:04 EDT",
            "advisory-text":"Exercise a high degree of caution (with regional advisories)",
            "recent-updates":"This travel advice was thoroughly reviewed and updated."
         },
         "fra":{
            "name":"Alg\u00e9rie",
            "url-slug":"algerie",
            "friendly-date":"4 octobre 2016 11:04 HAE",
            "advisory-text":"Faire preuve d\u2019une grande prudence (avec avertissements r\u00e9gionaux)",
            "recent-updates":"Les pr\u00e9sents Conseils aux voyageurs ont \u00e9t\u00e9 mis \u00e0 jour \u00e0 la suite d\u2019un examen minutieux."
         }
      }

   }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM