1

我有一个 json 字符串,我试图通过使用 tkinter GUI 窗口上的标签来打印每个部分(id、名称、链接等)。

数据:

{"id":"123456789","name":"John Smith","first_name":"John","last_name":"Smith","link":"http:\/\/www.facebook.com\/john.smith","username":"john.smith","gender":"male","locale":"en_GB"}

代码:

URL = https://graph.facebook.com/ + user
info = urlopen(info).read()
json_format = infor.decode("utf-8")

我的问题是如何将 json 数据的每个部分分配给一个变量,它可以打印在 tkinter 标签上吗?

提前致谢

编辑

试过这段代码:

jsonData = json.loads(json_format)
u_name = jsoninfo['username']

并收到以下错误消息

TypeError: string indices must be integers
4

3 回答 3

6

您想使用json标准模块:

>>> import json
>>> data = '{"id":"123456789","name":"John Smith","first_name":"John","last_name":"Smith","link":"http:\/\/www.facebook.com\/john.smith","username":"john.smith","gender":"male","locale":"en_GB"}'
>>> d = json.loads(data)

这使您的数据可以作为常规字典使用:

>>> d
{u'username': u'john.smith', u'first_name': u'John', u'last_name': u'Smith', u'name': u'John Smith', u'locale': u'en_GB', u'gender': u'male', u'link': u'http://www.facebook.com/john.smith', u'id': u'123456789'}
>>> d['username']
u'john.smith'
于 2013-03-15T13:13:14.977 回答
1
try:
    import simplejson as json
except ImportError: 
    import json

json_data = json.dumps(info)
# info here is json string or your variable json_format
于 2013-03-15T13:10:56.663 回答
0

您需要导入json库 - 它包含在标准库中,并加载 json。这会将 json 字符串转换为您可以使用的 Python 字典。

import json

py_dict= json.loads(json_string)
# work away
于 2013-03-15T13:14:03.280 回答