簡體   English   中英

Python-SimpleJSON問題

[英]Python - SimpleJSON Issue

我正在使用Mega API和Python,希望產生一個Python可讀的文件夾樹。 目前,我正在使用Mega的API提供的JSON響應,但由於某種原因,在解析它時遇到了麻煩。 過去,我只是以下面的格式使用simplejson,盡管現在它不起作用。 目前,我只是想獲取文件名。 任何幫助表示贊賞!

import simplejson    

megaResponseToFileSearch = "(u'BMExefXbYa', {u'a': {u'n': u'A Bullet For Pretty Boy - 1 - Dial M For Murder.mp3'}, u'h': u'BMExXbYa', u'k': (5710166, 21957970, 11015946, 7749654L), u'ts': 13736999, 'iv': (7949460, 15946811, 0, 0), u'p': u'4FlnwBTb', u's': 5236864, 'meta_mac': (529642, 2979591L), u'u': u'xpz_tb-YDUg', u't': 0, 'key': (223xx15874, 642xx8505, 1571620, 26489769L, 799460, 1596811, 559642, 279591L)})"

jsonRespone = simplejson.loads(megaResponseToFileSearch)

print jsonRespone[u'a'][u'n']

錯誤:

Traceback (most recent call last):
  File "D:/Projects/Mega Sync/megasync.py", line 18, in <module>
    jsonRespone = simplejson.loads(file4)
  File "D:\Projects\Mega Sync\simplejson\__init__.py", line 453, in loads
    return _default_decoder.decode(s)
  File "D:\Projects\Mega Sync\simplejson\decoder.py", line 429, in decode
    obj, end = self.raw_decode(s)
  File "D:\Projects\Mega Sync\simplejson\decoder.py", line 451, in raw_decode
    raise JSONDecodeError("No JSON object could be decoded", s, idx)
simplejson.decoder.JSONDecodeError: No JSON object could be decoded: line 1 column 0 (char 0)

編輯:

我被問到從哪里得到琴弦的。 這是對使用Mega API搜索文件的響應。 我正在使用這里找到的模塊。 https://github.com/richardasaurus/mega.py代碼本身看起來像這樣:

from mega import Mega
mega = Mega({'verbose': True})
m = mega.login(email, password)
file = m.find('A Bullet For Pretty Boy - 1 - Dial M For Murder.mp3')
print file

m.find中獲得的東西只是一個python元組,其中第1個元素(在第0個元素之后)是一個字典:

(u'99M1Tazb',
 {u'a': {u'n': u'test.txt'}, 
  u'h': u'99M1Tazb', 
  u'k': (1145485578, 1435138417, 702505527, 274874292), 
  u'ts': 1373482712,
  'iv': (1883603069, 763415510, 0, 0), 
  u'p': u'9td12YaY', 
  u's': 0, 
  'meta_mac': (1091379956, 402442960),
  u'u': u'79_166PAQCA', 
  u't': 0,
  'key': (872626551, 2013967015, 1758609603, 127858020, 1883603069, 763415510, 1091379956, 402442960)})

要獲取文件名,只需使用:

print file[1]['a']['n'] 

因此,根本不需要使用simplejson

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM