我正在尝试将JSON转换为CSV文件。我一直收到这样的错误:从None中提升JSONDecodeError(“期望值”,s,err.value) JSONDecodeError:期望值。请帮帮忙。这就是我要使用的代码。import json with open('C:/Users/gavin/OneDrive/Desktop/4
我正在尝试将一个大的jsons-文件(2.5GB)加载到Pandas dataframe。由于文件的大小较大,pandas.read_json()将导致内存错误。所以我试着像这样读到:
with open(os.path.join(S_DIR, 'file.jsons')) as json_file:data = json_file.r