繁体   English   中英

用python3解析json

[英]Parsing json with python3

新手python程序员在这里,我有以下json响应:

[
  {
    "type": "Incursion",
    "state": "mobilizing",
    "influence": 1,
    "has_boss": true,
    "faction_id": 500019,
    "constellation_id": 20000739,
    "staging_solar_system_id": 30005054,
    "infested_solar_systems": [
      30005050,
      30005051,
      30005052,
      30005053,
      30005054,
      30005055
    ]
  },
  {
    "type": "Incursion",
    "state": "established",
    "influence": 0,
    "has_boss": false,
    "faction_id": 500019,
    "constellation_id": 20000035,
    "staging_solar_system_id": 30000248,
    "infested_solar_systems": [
      30000244,
      30000245,
      30000246,
      30000247,
      30000248,
      30000249,
      30000250,
      30000251,
      30000252,
      30000253
    ]
  },
  {
    "type": "Incursion",
    "state": "mobilizing",
    "influence": 0,
    "has_boss": false,
    "faction_id": 500019,
    "constellation_id": 20000161,
    "staging_solar_system_id": 30001101,
    "infested_solar_systems": [
      30001097,
      30001098,
      30001099,
      30001100,
      30001101,
      30001102
    ]
  },
  {
    "type": "Incursion",
    "state": "established",
    "influence": 0,
    "has_boss": false,
    "faction_id": 500019,
    "constellation_id": 20000647,
    "staging_solar_system_id": 30004434,
    "infested_solar_systems": [
      30004425,
      30004426,
      30004427,
      30004428,
      30004429,
      30004430,
      30004431,
      30004432,
      30004433,
      30004434,
      30004435
    ]
  },
  {
    "type": "Incursion",
    "state": "established",
    "influence": 0.061500001698732376,
    "has_boss": false,
    "faction_id": 500019,
    "constellation_id": 20000570,
    "staging_solar_system_id": 30003910,
    "infested_solar_systems": [
      30003904,
      30003906,
      30003908,
      30003909,
      30003910,
      30003903
    ]
  }
]

编写原始代码是为了解析XML响应。

这是有问题的代码:

incursion_constellations = []

if (online):
    inc = urllib2.urlopen('https://esi.tech.ccp.is/latest/incursions/')
else:
    inc = file(r'incursions.json', 'r')

jinc = json.load(inc)

for j in jinc['items']:
    incursion_constellations.append(str(j['constellation']['id_str']))


for s in all_stations:
    cur.execute("SELECT constellationID FROM mapSolarSystems WHERE solarSystemID = " + str(s['ssid']))
    res = cur.fetchone()
    cid = str(res[0])
    s['incursion'] = cid in incursion_constellations

我很难理解的区域是:jinc in jinc ['items']:

我收到此错误:

Traceback (most recent call last):
  File "./stations.py", line 201, in <module>
    for j in jinc['items']:
TypeError: list indices must be integers, not str

谁能帮助我理解如何将其转换为能够解析json响应并检索constellation_id并将其附加到列表中?

提前致谢。

将原始循环更改为:

for j in jinc:
    incursion_constellations.append(str(j['constellation_id']))

但是你需要确保json中的constellation_id与之前['constellation']['id_str']下的id相同

看到[和]在响应的开头和结尾,似乎这个json响应是列表,而不是dict,正如你的错误所暗示的那样。

如果它是一个列表,你应该使用整数作为索引,而不是str,就像你在dict中所做的那样。 因此,您的代码应该是类似的

jinc[0]['constellation_id']

(我没看到['constellation'] ['id_str']部分来自哪里)

[和]内的任何内容都在列表中,并且应该使用整数索引。 {和}中的那些是在dict中,应该使用str索引。

循环使用它,只需使用range和len。

这里回答了类似的问题。

暂无
暂无

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

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