This package helps create excel files more efficiently and quickly
Project description
Create Excel
This Package will help you to create Excel file more quickly and efficiently.
How to Install it?
On Windows:
pip install nestap_excel_create
On Linux:
sudo pip3 install nestap_excel_create
How to Use it?
Initializing The Package
from nestap_excel_create.create_excel_helper import create_excel
data1 = Employee.objects.values('eno', 'ename', 'esal', 'eaddr').all()
data2 = Student.objects.values('roll_no', 'name', 'school', 'addr').all()
columns1 = [
('eno', 'Employee Number'),
('ename', 'Employee Name'),
('esal', 'Employee Salary'),
('eaddr', 'Employee Address')
]
columns2 = [
('roll_no', 'Roll Number'),
('name', 'Student Name'),
('school', 'School'),
('addr', 'Address')
]
create_excel([
{
'sheet_name': Your sheet name 1,
'columns_keys': columns1
'data_list': list(data1)
},
{
'sheet_name': Your sheet name 2,
'columns_keys': columns2
'data_list': list(data2)
}
]) # Provide the list of the dictionary while Initializing
This Nestap Excel package create 1 and more than 1 excel sheet in same excel file
This Nestap Excel Package create excel file more quickly and efficiently.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for nestap_excel_create-1.0.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 520548424e7ed2f9f043b686c64be93847c704766e289b1e43c718069dd5504e |
|
MD5 | 551c6c8c198ad5cdbc397b4b3041e8e1 |
|
BLAKE2b-256 | 1c3e003244470e3aeca8460e1933f0677da559c740d29aaec2f694dc61696ff3 |
Close
Hashes for nestap_excel_create-1.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e7d4e7b710dac7c74f04721b7dca36015685636ddcfb9de25d5a0a7521b41fa2 |
|
MD5 | 00c85d2bfd3e7218753e829e3f1d7dd2 |
|
BLAKE2b-256 | 097c791d731a84220db36a75cc881397f179a59b19e8bac745dd4e8cf9f979a3 |