Common function when working with excel.
Project description
Django Excel Tools
Common function when working with excel.
Requirements
Installations
Install django-excel-tools
pip install django-excel-tools
Usage
Class declaration
from django_excel_tools import serializers
class OrderExcelSerializer(serializers.ExcelSerializers):
REGION_CHOICES = ('Central', 'North', 'East', 'West', 'South')
product_name = serializers.CharField(max_length=100, verbose_name='Product Name')
quantity = serializers.IntegerField(verbose_name='Quantity', blank=True, default=0)
price = serializers.IntegerField(verbose_name='Price')
region = serializers.CharField(max_length=10, verbose_name='Region', choices=REGION_CHOICES)
transaction_date = serializers.DateField(date_format='%Y-%m-%d', date_format_verbose='YYYY-MM-DD',
verbose_name='Transaction Date')
class Meta:
start_index = 1
fields = ('product_name', 'quantity', 'price', 'region', 'transaction_date')
Class initialization
from openpyxl import load_workbook
def import_order():
workbook = load_workbook(file) # Create workbook from file. Used openpyxl
worksheet = workbook.worksheets[0]
serializer = OrderExcelSerializer(worksheet=worksheet, **kwargs)
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
History
0.1.0 (2017-08-22)
First release on PyPI.
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
django_excel_tools-0.2.13.tar.gz
(18.4 kB
view details)
File details
Details for the file django_excel_tools-0.2.13.tar.gz.
File metadata
- Download URL: django_excel_tools-0.2.13.tar.gz
- Upload date:
- Size: 18.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79c1e5ca2be48505161d31517a906de497cb0b1aa70533296cffa4bb931eccf5
|
|
| MD5 |
82b7915486672f6e958875517d857def
|
|
| BLAKE2b-256 |
5c6425ad24493fab064f35b2fdd312badfe5cba3c966d6fd113d874de84c9793
|