search
HomeBackend DevelopmentPython TutorialHow to use django plug-in to download excel

The content of this article is about the method of using Django plug-in to download excel. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

Since most of the current information is implemented using pandas or xlwt libraries. In fact, it is not that troublesome, because django has a corresponding plug-in django-excel.

This plug-in is written dependent on the pyexcel library. However, there is no need to specifically install the pyexcel library, because pyexcel will be installed automatically when installing django-excel. Since pyexcel is a large library, and you don’t need to consider how to use pyexcel when using django-excel, I won’t introduce too much here. Here, I would like to say one more thing, pyexcel is also very powerful and can realize data visualization. Currently, corresponding plug-ins for web frameworks such as flask and django have been developed, such as the django-excel introduced today.

django-excel is a plug-in that supports uploading and downloading excel files. It can display excel files in the form of web pages and store data in the database. Since the author is new to this plug-in, and the development requirements are currently only for the download function, this article only introduces its download function. (Note: To implement the download function, the deployed server does not need to install office)

1. Installation

pip install django-excel

pyexcel-io and pyexcel will be automatically installed during installation , pyexcel-webio

2. Versions that support django

currently support version django2.1.1. Therefore, developers using the latest version of django don’t have to worry, because it supports it.

3. Implement download

The plug-in supports many data formats, array (two-dimensional array), dictionary, database table (single or multiple), Django's ORM query results ( query sqt) and so on. File types that can be generated: csv, tsv, csvz, tsvz, xls, xlsx, xlsm, ods.

##csv, csvz, tsv, tsvz 2.6, 2.7, 3.3, 3.4, 3.5, 3.6 pypyxls, xlsx(read-only), xlsm(read-only) Same as aboveopenpyxl##pyexcel-ods3pyexcel-ods

Package name

Supported file formats

Dependencies

##PythonVersion

pyexcel-io


pyexcel-xls

xlrd

, xlwt

pyexcel-xlsx

##xlsx

Same as above

##ods

pyexcel-ezodf

, lxml

2.6, 2.7, 3.3, 3.4 3.5, 3.6

ods

odfpy

Same as above

The above table is the installation required to generate the corresponding file format Bag.

If you want to use a two-dimensional array to generate an excel file, you need to return django_excel.make_response_from_array (two-dimensional array name, generated file type, status=200). Each row of the two-dimensional array represents the corresponding row in Excel.

If you want to use a dictionary to generate an excel file, you need to return django_excel.make_response_from_dict(dictionary name, file type, status=200). The key name is the column name and the key value is the data.

If you want to use a database table (sheet) to generate an excel file, you need to return django_excel.make_response_from_a_table(table name, file type, status=200)

If you want to use database tables (multiple tables) to generate excel files, you need to return django_excel.make_response_from_tables(table name list, file type status=200)

If you want to use query sets to generate excel files, you need to return django_excel.make_response_from_query_sets(query set name, required column corresponding field (list type), file type, status=200). The order in the list of fields corresponding to the required columns is the order of the Excel column names, and the elements in the list must be variable names in the model.

The common parameters of all functions include file_name and sheet_name, which are the file name and Excel workbook name respectively.

Note that whether it is a database table or a query set, it cannot contain foreign keys, otherwise an error will be reported, and downloading can only be achieved through page jumps, not through ajax requests, otherwise it will not be downloaded.

eg:

models.py

class django_test_1(models.Model):
    abc = models.CharField(max_length=20,db_column='测试')

views.py

import django_excel as excel
def download_excel(request):
    data_excel =django_test_1.objects.all()
    column_names = ["abc"]
    return excel.make_response_from_query_sets(data_excel,column_names, "xlsx",status = 200 ,sheet_name='测试',file_name='测试文件')

The above is the detailed content of How to use django plug-in to download excel. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:博客园. If there is any infringement, please contact admin@php.cn delete
怎么将Django项目迁移到linux系统中怎么将Django项目迁移到linux系统中Jun 01, 2023 pm 01:07 PM

Django项目配置修改我们需要把原先的Django项目进行修改才能更好地进行项目迁移工作,首先需要修改的是settings.py文件。由于项目上线之后不能让用户看到后台的运行逻辑,所以我们要把DEBUG改成False,把ALLOWED_HOSTS写成‘*’,这样是为了允许从不同主机进行访问。由于linux中如果不加这句可能会出现文件找不到的情况,所以我们要把模板的路径进行拼接。由于做Django项目肯定进行过数据库的同步,所以我们要把migrations

centos+nginx+uwsgi部署django项目上线的方法centos+nginx+uwsgi部署django项目上线的方法May 15, 2023 am 08:13 AM

我django项目叫yunwei,主要app是rabc和web,整个项目放/opt/下如下:[root@test-codeopt]#lsdjango_virtnginxredisredis-6.2.6yunwei[root@test-codeopt]#lsyunwei/manage.pyrbacstatictemplatesuwsgiwebyunwei[root@test-codeopt]#lsyunwei/uwsgi/cut_log.shloguwsgi.iniuwsgi.loguwsgi.p

Django框架中的数据库迁移技巧Django框架中的数据库迁移技巧Jun 17, 2023 pm 01:10 PM

Django是一个使用Python语言编写的Web开发框架,其提供了许多方便的工具和模块来帮助开发人员快速地搭建网站和应用程序。其中最重要的一个特性就是数据库迁移功能,它可以帮助我们简单地管理数据库模式的变化。在本文中,我们将会介绍一些在Django中使用数据库迁移的技巧,包括如何开始一个新的数据库迁移、如何检测数据库迁移冲突、如何查看历史数据库迁移记录等等

Django框架中的文件上传技巧Django框架中的文件上传技巧Jun 18, 2023 am 08:24 AM

近年来,Web应用程序逐渐流行,而其中许多应用程序都需要文件上传功能。在Django框架中,实现上传文件功能并不困难,但是在实际开发中,我们还需要处理上传的文件,其他操作包括更改文件名、限制文件大小等问题。本文将分享一些Django框架中的文件上传技巧。一、配置文件上传项在Django项目中,要配置文件上传需要在settings.py文件中进

如何用nginx+uwsgi部署自己的django项目如何用nginx+uwsgi部署自己的django项目May 12, 2023 pm 10:10 PM

第一步:换源输入命令换掉Ubuntu的下载源sudonano/etc/apt/sources.list将以下全部替换掉原文件,我这里用的是阿里的源,你也可以换其他的。debhttp://mirrors.aliyun.com/ubuntu/bionicmainrestricteddebhttp://mirrors.aliyun.com/ubuntu/bionic-updatesmainrestricteddebhttp://mirrors.aliyun.com/ubuntu/bionicunive

使用Django构建RESTful API使用Django构建RESTful APIJun 17, 2023 pm 09:29 PM

Django是一个Web框架,可以轻松地构建RESTfulAPI。RESTfulAPI是一种基于Web的架构,可以通过HTTP协议访问。在这篇文章中,我们将介绍如何使用Django来构建RESTfulAPI,包括如何使用DjangoREST框架来简化开发过程。安装Django首先,我们需要在本地安装Django。可以使用pip来安装Django,具体

使用Python Django框架构建博客网站使用Python Django框架构建博客网站Jun 17, 2023 pm 03:37 PM

随着互联网的普及,博客在信息传播和交流方面扮演着越来越重要的角色。在此背景下,越来越多的人开始构建自己的博客网站。本文将介绍如何使用PythonDjango框架来构建自己的博客网站。一、PythonDjango框架简介PythonDjango是一个免费的开源Web框架,可用于快速开发Web应用程序。该框架为开发人员提供了强大的工具,可帮助他们构建功能丰

Django框架中的多数据库支持技巧Django框架中的多数据库支持技巧Jun 18, 2023 am 10:52 AM

Django是一款流行的Pythonweb框架,其出色的ORM(对象关系映射)机制让开发者能够轻松操作数据库。但是在一些实际项目中,需要连接多个数据库,这时候就需要一些技巧来保证项目的稳定性和开发效率。在Django中,多数据库的支持是基于Django框架自身提供的功能而实现的。在这里,我们将介绍一些多数据库支持的技巧,以帮助你在Django的开发中更好地

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use