Python
load json file with UTF-8 BOM header - Stack Overflow
12
down voteaccepted
You can open with
codecs
:import json
import codecsjson.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
Python load json file with UTF-8 BOM header - Stack
Overflow
时间: 2024-10-06 23:06:33