2

我通读了django-storages 文档,该文档建议使用以下内容将文件保存到云存储(在我的情况下为 GCS):

>>> obj2 = Resume()
>>> obj2.pdf.save('django_test.txt', ContentFile('more content'))
>>> obj2.pdf
<FieldFile: tests/django_test_.txt>
>>> obj2.pdf.size

但是,按照相同的逻辑,我正在努力使用 FileField 对象将 Pandas DataFrame 保存为 CSV:

我的代码:

   df = load_some_df()
   print(df.head())
   # prints contents of df
   contents = ContentFile(df.to_csv(index=False, header=True))
   output_file_name = 'df.csv'

   instance = MyModel()
   instance.output_file.save(output_file_name, contents)

以上给了我错误:

('`data` must be bytes, received', <class 'str'>)
4

1 回答 1

1

替换df.to_csv(index=False, header=True)df.to_csv(index=False, header=True).encode('utf-8')

于 2019-10-12T18:14:14.397 回答