如何在python中创建可以保存在内存中的CSV文件?

前端之家收集整理的这篇文章主要介绍了如何在python中创建可以保存在内存中的CSV文件? 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在django中创建一个CSV文件,当您访问一个url时它会下载CSV文件,它的工作原理很棒,唯一的好处是我希望在写入文件时将其存储在内存中而不是硬盘中.如何使用导入的csv执行此操作

这是使用列表创建CSV的Django的

def data_Feed_file(request):
    open_publications = self.get_publications(user_context)

    with open('facebook_Feed.csv','wb') as csvfile:
        filewriter = csv.writer(csvfile,delimiter=',',quotechar='|',quoting=csv.QUOTE_MINIMAL)
        filewriter.writerow(['id','title','description'])
        for op_pub in open_publications:
            filewriter.writerow([op_pub.id,op_pub.name,str(op_pub.description)])

    with open('facebook_Feed.csv','rb') as myfile:
        response = HttpResponse(myfile,content_type='text/csv')
        response['Content-Disposition'] = 'attachment; filename=facebook_Feed.csv'

    return response
最佳答案
您可以将csv文件保存在pandas DataFrame中.像这样:

import pandas as pd

df = pd.read_csv('url_to_csv')

然后,熊猫库会读取csv,而无需将其保存到驱动器中.

原文链接:https://www.f2er.com/python/533077.html

猜你在找的Python相关文章