0
我有一個python中包含unicode值的字典。我想計算這本詞典的md5總和。我試圖用這個問題的答案:Computing an md5 hash of a data structure如何計算unicode字典的MD5校驗和?
import hashlib
import bencode
data = {'unicode_text': 'سلام'}
data_md5 = hashlib.md5(bencode.bencode(data)).hexdigest()
print data_md5
但問題是,bencode
返回此錯誤:
KeyError: <type 'unicode'>