blob: e851742927c27b80543b922fe8a60837d200e865 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
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.
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.
|