Python Json 解析

发布于 2024-11-16 09:08:48 字数 414 浏览 0 评论 0原文

我在使用 json 库用 python 解析 json 时遇到了一些问题。 这是我试图解析的 json 的格式:

{'entry':[
    {

        JSON Data 1
    }, 

        JSON Data 2
    }
]}

这是我的 Python:

for entry in response['entry'][0]:

    video['video_url'] = entry['id']['$t']
    video['published'] = entry['published']['$t']

我似乎无法使用上面的代码迭代两个 JSON 块,我只得到了某些输出的第一个块原因。

有人有什么想法吗?提前致谢。

I'm having a bit of an issue with parsing json with python using the json library.
Here is the format of the json I'm trying to parse:

{'entry':[
    {

        JSON Data 1
    }, 

        JSON Data 2
    }
]}

And here is my Python:

for entry in response['entry'][0]:

    video['video_url'] = entry['id']['$t']
    video['published'] = entry['published']['$t']

I don't seem to be able to iterate over the two blocks of JSON with the above code, I only get the first block outputted for some reason.

Anybody have any ideas?? Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

窗影残 2024-11-23 09:08:48

如果:

response = {'entry':[
    {

        JSON Data 1
    }, 
    {

        JSON Data 2
    }
]}

并且:

response['entry'][0] == { JSON Data 1  }

那么:

for entry in response['entry']:

    video['video_url'] = entry['id']['$t']
    video['published'] = entry['published']['$t']

或者:

video = dict(zip(['video_url', 'published'], [entry['id']['$t'], entry['published']['$t']]) for entry in response['entry']

If:

response = {'entry':[
    {

        JSON Data 1
    }, 
    {

        JSON Data 2
    }
]}

And:

response['entry'][0] == { JSON Data 1  }

Then:

for entry in response['entry']:

    video['video_url'] = entry['id']['$t']
    video['published'] = entry['published']['$t']

Or:

video = dict(zip(['video_url', 'published'], [entry['id']['$t'], entry['published']['$t']]) for entry in response['entry']
半城柳色半声笛 2024-11-23 09:08:48

该列表包含 2 个单独的字典。直接迭代列表。

That list contains 2 separate dicts. Iterate over the list directly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文