因此,我正在尝试json abit,这是到目前为止的代码,

import json
from utorrent.client import UTorrentClient

uTorrent = UTorrentClient("xxxx", "xxxx", "xxxx")

data = uTorrent.list()

torrents = json.loads(data)["torrents"]

for torrent in torrents:
    print item[0] # hash
    print item[2] # name
    print item[21] # status
    print item[26] # folder


可以在here中查看典型的json输出。但即时通讯收到“预期的字符串或缓冲区”错误。有指针的人吗?

上面的代码要点是为uTorrent提供的列表中的每个种子打印每个哈希/名称。

最佳答案

您是否尝试使用负载而不是负载?我遇到了同样的问题,并且意识到有区别。

关于python - 尝试提取json数据,获取预期的字符串或缓冲区,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16924319/

10-10 05:49