python pandas dataframe csv django下载

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python pandas dataframe csv django下载相关的知识,希望对你有一定的参考价值。

from django.http import HttpResponse
import pandas as pd

def foo():
  your_dataframe = pd.Dataframe()

  response = HttpResponse(content_type='text/csv')
  response['Content-Disposition'] = 'attachment; filename=filename.csv'

  results.to_csv(path_or_buf=response,sep=';',float_format='%.2f',index=False,decimal=",")
  return response

以上是关于python pandas dataframe csv django下载的主要内容,如果未能解决你的问题,请参考以下文章

我们如何将 Python Pandas DataFrame 重塑为 C-Contiguous 内存?

python-pandas基础数据结构(DataFrame)

Python Pandas Dataframe 到 CSV [重复]

Pandas+Python初始化一个全零的Dataframe

Pandas+Python初始化一个全零的Dataframe

pandas怎么选取dataframe中几列