我正在尝试遍历json数据。这是我拥有的数据结构

import requests
import re
url = "https://web.archive.org/__wb/calendarcaptures?url=http%3A%2F%2Fwww.unibocconi.it&selected_year=2014"
# You can see the data structure by copy-pasting the link
data = requests.get(url).json()
    for x in data:
       for y in x:
           for z in y:
               for xx in z:
                    start1 = "'ts': "
                    start2 = "'st': "
                    h = str(xx)
                    a = re.search('%s(.*)' % (start1) , h).group(1)
                    date = a[:16].replace("[", "").replace("]", "")
                    date = re.sub("[^0-9]", "", date)
                    b = re.search('%s(.*)' % (start2) , h).group(1)
                    status = b[:5].replace("[", "").replace("]", "")


我知道,我无法遍历None类型的对象。但是我几个小时都无法解决问题。有任何想法吗?
注意:我可以通过使用请求直接从网络获取json数据

最佳答案

如果您真正想要的只是count / statuscode / timestamp值,则无需从字面上解析json列表。 Python将根据需要将json作为list / dict引入。因此,要跳过任何“无”值,请使用“ if z:”条件语句。

一旦到达z的位置,z.get('cnt','')就会拉出该字段(如果存在),或者如果不存在则不返回任何内容。然后,您可以使用pop进入状态/日期列表。我编写该部分的方式虽然不那么优雅,但是可以完成工作。 (这假定状态/时间戳列表始终为长度1。如果不是这种情况,则可以在其中轻松插入一些其他逻辑/索引以提取您感兴趣的值。)

for x in data:
    for y in x:
        for z in y:
            if z:
                count = z.get('cnt', '')
                st = z.get('st', '')
                if st:
                    status = st.pop()
                ts = z.get('ts', '')
                if ts:
                    date = ts.pop()

print(count, status, date)

2 200 20140308061038


更新:数据是列表类型。

09-25 18:23
查看更多