diff options
author | Prof. HORSTMANN <wmh@eipg.fr> | 2020-05-14 20:02:53 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-05-16 08:44:11 +0700 |
commit | df76812c1e0eae30e86cfc73b5e7d0660f844164 (patch) | |
tree | 1b7868c2319364da320ff9f263fbee2af216792e /python/xlutils/README | |
parent | 9c270f89fd886c80e031ff3930f3c923a9f6abb4 (diff) | |
download | slackbuilds-df76812c1e0eae30e86cfc73b5e7d0660f844164.tar.gz |
python/xlutils: Added (utilities for working with Excel files)
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/xlutils/README')
-rw-r--r-- | python/xlutils/README | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/python/xlutils/README b/python/xlutils/README new file mode 100644 index 0000000000..2759416d02 --- /dev/null +++ b/python/xlutils/README @@ -0,0 +1,46 @@ +A Python package provides a collection of utilities for working with Excel +files. Since these utilities may require either or both of the xlrd and xlwt +packages, they are collected together here, separate from either package. + +Currently available are: + +xlutils.copy + Tools for copying xlrd.Book objects to xlwt.Workbook objects. +xlutils.display + Utility functions for displaying information about xlrd-related objects in + a user-friendly and safe fashion. +xlutils.filter + A mini framework for splitting and filtering Excel files into new Excel + files. +xlutils.margins + Tools for finding how much of an Excel file contains useful data. +xlutils.save + Tools for serializing xlrd.Book objects back to Excel files. +xlutils.styles + Tools for working with formatting information expressed in styles. + +Installation + +Do the following in your virtualenv: + +pip install xlutils + +Documentation + +The latest documentation can also be found at: +http://xlutils.readthedocs.org/en/latest/ + +Problems? + +Try the following in this order: + + Read the source + Ask a question on http://groups.google.com/group/python-excel/ + +Licensing + +Copyright (c) 2008-2015 Simplistix Ltd. See docs/license.txt for details. + +Optional + +Python3 support is detected automatically. |