Tutorial on generating CSV files with streaming responses in Python's Django framework

Source: Internet
Author: User
Tags in python

This article mainly introduces the python in the Django framework with streaming response to generate a CSV file tutorial, the author specifically mentioned to prevent the CSV file in Chinese to avoid garbled problems, the need for friends can refer to the

In Django, the streaming response streaminghttpresponse is a good thing to produce a large file quickly and save memory.

One of the current projects for streaming response is EventSource, which is used to improve the slow sense of user-generated communication across systems. This is not to elaborate.

Another is to generate a large CSV file.

When the Django process is in a web container such as Gunicorn or UWSGI, if the response does not return for more than a certain amount of time, it is terminated by the Web container, although we can bypass the problem by adding a time-out to the Web container, but after all, the symptom is not the root cause. To fundamentally solve this problem, the Python generator, the Django framework provides streaminghttpresponse this streaming response is helpful

And in the CSV, Chinese processing is also important, to ensure that the use of Excel to open a CSV is not garbled or something. To save space, I posted all the code together. Actual use according to the project plan to place ha

Code on:

?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 The /tr>

?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21-22 From django.views.generic import View from django.http.response Import Streaminghttpresponse class Exampleview (View): he aders=[' some ', ' header '] def get (self,request): result = [[' First line ', ' Data 1 '], [' Second row ', ' Data 2 ']] Echoer = Echo () writer = unicodewriter (ec Hoer def csv_itertor (): Yield codecs. Bom_utf8 yield Writer.writerow (self.headers) for column in Result:yield writer.writerow (column) response = Streaminghtt Presponse (row for row in Csv_itertor ()), content_type= "Text/csv;charset=utf-8") response[' content-disposition '] = ' Attachment;filename= "Example.csv" ' return response

Note < > : More Wonderful tutorials please focus on Triple programming

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.