No project description provided
Project description
SIMPLEXL
Simplexl is a Python package which is used to create excel files dynamically using a program. This package depends on openpyxl which is native python package for creating excel.
Installation
pip install simplexl
How to use
The usage of simplexl is as follows
from simplexl import CreateExcel
xl = CreateExcel(
excel_name="path/name of the excel # default = generate-simplexl.xlsx
)
xl.create_sheet(
sheet_name=sheet_name, # optional default = sheet1
sheet_index=sheet_index # optional default = 0
col_data=col_data,
row_data=row_data
)
Example
from simplexl import CreateExcel
col_data = ['col1', 'col2']
row_data = [
('col1_row1', 'col2_row1'),
('col1_row2', 'col2_row2')
]
xl = CreateExcel()
xl.create_sheet(
col_data=col_data,
row_data=row_data
)
It will create a xlsx using row and col data
License
Copyright (c) 2022 Devaraju Garigapati
This repository is licensed under the MIT license. See LICENSE for details.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file simplexl-1.0.0.tar.gz.
File metadata
- Download URL: simplexl-1.0.0.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.2 CPython/3.8.10 Linux/5.15.68.1-microsoft-standard-WSL2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eaf8b55d908b0184f29bbf69d91689c96b471997593dc5c454310cd6467d52fe
|
|
| MD5 |
f1dabaaff56b9497fdd44752b1f018dd
|
|
| BLAKE2b-256 |
b5af2fe4b48bc0cc034a79e93e69d42832064f4d987e60b07e94a00aa2a8e05d
|
File details
Details for the file simplexl-1.0.0-py3-none-any.whl.
File metadata
- Download URL: simplexl-1.0.0-py3-none-any.whl
- Upload date:
- Size: 3.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.2 CPython/3.8.10 Linux/5.15.68.1-microsoft-standard-WSL2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa2e1f230d43e287981eb4bddb08cb5aa263170d8e36e0300ce6f6c374d6a22a
|
|
| MD5 |
1805eb1eacdb6c7b18ad7abbb9ddf9bd
|
|
| BLAKE2b-256 |
81af0abc72c6f10b8784f04f0adaef14b06c8b2270881b91eb1640f928784b17
|