Python load json file with UTF-8 BOM header - Stack Overflow

时间:2014-05-19 23:02:20   收藏:0   阅读:507

Python load json file with UTF-8 BOM header - Stack Overflow


12
down vote

accepted

You can open with codecs:

import json
import codecs

json.load(codecs.open(‘sample.json‘,‘r‘,‘utf-8-sig‘))

or decode with utf-8-sig yourself and pass to loads:

json.loads(open(‘sample.json‘).read().decode(‘utf-8-sig‘))

Python load json file with UTF-8 BOM header - Stack Overflow,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!