我尝试使用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
典型的json输出可以在这里查看。但我得到一个"预期的字符串或缓冲区"错误。有人有什么建议吗?
上面代码的重点是打印每个哈希/名称…在uTorrent提供的列表中找到的每个种子
您是否尝试使用load而不是loads?我也有同样的问题,我意识到这是不一样的。