如何解析 json 输出仅从数据中获取列表,然后将输出添加到 google.com/confidetial 和列表中的其他字符串中。所以我的 json 输出我将其命名为“文本”
text = {"success":true,"code":200,"data":["Confidential","L1","Secret","Secret123","foobar","maret1","maret2","posted","rontest"],"errs":[],"debugs":[]}.
我要做的是仅获取数据下的列表。到目前为止,我得到的脚本给了我整个 json 输出。
json.loads(text)
print text
output = urllib.urlopen("http://google.com" % text)
print output.geturl()
print output.read()