我有一个用户可以上传Excel fie的地方,并且能够在我的views.py中调用该文件,如下所示:
python -c "print 'hello world'
以下是read_data函数实际执行的操作:
def create_chart(request):
# How I get Excel file:
file = File.objects.get(id=1).file
content = file.read()
# excel.read_data is a custom function I wrote using pandas
print(excel.read_data(content))
但是,当我运行我的代码时,我收到以下错误消息:
如果没有为io传递缓冲区或路径,必须显式设置引擎。
关于我哪里出错的任何想法?