Skip to main content

Django Excel Storage

Project description

Installation

pip install django-excel-storage

Usage

from django_excel_storage import ExcelStorage

def excelfunc():
    objs = SomeModel.objects.all()
    fpath = ExcelStorage(data).save()

or:

from django_excel_storage import ExcelStorage

def excelfunc():
    data = [
        {
            'Column 1': 1,
            'Column 2': 2,
        },
        {
            'Column 1': 3,
            'Column 2': 4,
        }
    ]
    fpath = ExcelStorage(data, 'my_data', font='name SimSum').save()

or:

from django_excel_storage import ExcelStorage

def excelfunc():
    data = [
        ['Column 1', 'Column 2'],
        [1, 2],
        [3, 4]
    ]
    fpath = ExcelStorage(data, 'my_data', font='name SimSum').save()

or:

from django_excel_storage import ExcelStorage

def excelfunc():
    data = [
        ['Column 1', 'Column 2'],
        [1, [2, 3]],
        [3, 4]
    ]
    fpath = ExcelStorage(data, 'my_data', font='name SimSum', row_merge=True).save()

Params

  • font=’name SimSum’
    • Set Font as SimSum(宋体)

  • force_csv=True
    • CSV Format? True for Yes, False for No, Default is False

CSV

Win Excel 2013

Mac Excel 2011

Mac Excel 2016

Mac Numbers

UTF8

Messy

Messy

Messy

Normal

GB18030

Normal

Normal

Normal

Messy

UTF8 + BOM_UTF8

Normal

Messy

Normal

Normal

UTF16LE + BOM

Project details


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-storage-2.0.4.tar.gz (3.4 kB view details)

Uploaded Source

Built Distribution

django_excel_storage-2.0.4-py2.py3-none-any.whl (3.8 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-excel-storage-2.0.4.tar.gz.

File metadata

  • Download URL: django-excel-storage-2.0.4.tar.gz
  • Upload date:
  • Size: 3.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.2

File hashes

Hashes for django-excel-storage-2.0.4.tar.gz
Algorithm Hash digest
SHA256 b5a7cd041d96113d0194b700c142adfeb04d61e19a42bf39a19ac8cd0108286f
MD5 6ae7e3ce483ab9095a82f9e68139501e
BLAKE2b-256 078e1d3e1e79f631435ec5cc184bc0ad9c196afd066af7f19968b46e01a78578

See more details on using hashes here.

File details

Details for the file django_excel_storage-2.0.4-py2.py3-none-any.whl.

File metadata

  • Download URL: django_excel_storage-2.0.4-py2.py3-none-any.whl
  • Upload date:
  • Size: 3.8 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.2

File hashes

Hashes for django_excel_storage-2.0.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 2d2902fe5eb4db1f8341877920cff926948471f52fae0b0daec56e015f9bd157
MD5 afe98773c6bfa539aeacf825d5d47701
BLAKE2b-256 6a3a678c21088fccb743a7786850cbc3c1b34cef39a5be2ce765cb3c1b78a63a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page