Python 服務器之Django下載大文件和壓縮zip文件


"""
 
         

  @author:Peng(非原創)

 
         

    參考:(外網)http://djangosnippets.org/snippets/365/

 
         

  記錄:開發歷程

 """




import
os, tempfile, zipfile from django.http import HttpResponse from django.core.servers.basehttp import FileWrapper def send_file(request): """ Send a file through Django without loading the whole file into memory at once. The FileWrapper will turn the file object into an iterator for chunks of 8KB. """   filename = __file__ # Select your file here.   wrapper = FileWrapper(file(filename))   response = HttpResponse(wrapper, content_type='text/plain')   response['Content-Length'] = os.path.getsize(filename)   return response def send_zipfile(request): """ Create a ZIP file on disk and transmit it in chunks of 8KB, without loading the whole file into memory. A similar approach can be used for large dynamic PDF files. """   temp = tempfile.TemporaryFile()   archive = zipfile.ZipFile(temp, 'w', zipfile.ZIP_DEFLATED)   for index in range(10):   filename = __file__ # Select your files here.   archive.write(filename, 'file%d.txt' % index)   archive.close()   wrapper = FileWrapper(temp)   response = HttpResponse(wrapper, content_type='application/zip')   response['Content-Disposition'] = 'attachment; filename=test.zip'   response['Content-Length'] = temp.tell()    # Python文件操作tell()方法:這種方法簡單地返回文件的當前位置讀/寫指針在文件。   temp.seek(0)   return response

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM