|
1 |
| -======= |
| 1 | +|Travis|_ |Coveralls|_ |Docs|_ |PyPI|_ |
| 2 | + |
| 3 | +.. |Travis| image:: https://api.travis-ci.org/python-excel/xlutils.svg?branch=master |
| 4 | +.. _Travis: https://travis-ci.org/python-excel/xlutils |
| 5 | + |
| 6 | +.. |Coveralls| image:: https://coveralls.io/repos/python-excel/xlutils/badge.svg?branch=master |
| 7 | +.. _Coveralls: https://coveralls.io/r/python-excel/xlutils?branch=master |
| 8 | + |
| 9 | +.. |Docs| image:: https://readthedocs.org/projects/xlutils/badge/?version=latest |
| 10 | +.. _Docs: http://xlutils.readthedocs.org/en/latest/ |
| 11 | + |
| 12 | +.. |PyPI| image:: https://badge.fury.io/py/xlutils.svg |
| 13 | +.. _PyPI: https://badge.fury.io/py/xlutilsxlutils |
| 14 | + |
2 | 15 | xlutils
|
3 | 16 | =======
|
4 | 17 |
|
| 18 | +This package provides a collection of utilities for working with Excel |
| 19 | +files. Since these utilities may require either or both of the xlrd |
| 20 | +and xlwt packages, they are collected together here, separate from either |
| 21 | +package. |
| 22 | + |
| 23 | +Currently available are: |
| 24 | + |
| 25 | +**xlutils.copy** |
| 26 | + Tools for copying xlrd.Book objects to xlwt.Workbook objects. |
| 27 | + |
| 28 | +**xlutils.display** |
| 29 | + Utility functions for displaying information about xlrd-related |
| 30 | + objects in a user-friendly and safe fashion. |
| 31 | + |
| 32 | +**xlutils.filter** |
| 33 | + A mini framework for splitting and filtering Excel files into new |
| 34 | + Excel files. |
| 35 | + |
| 36 | +**xlutils.margins** |
| 37 | + Tools for finding how much of an Excel file contains useful data. |
| 38 | + |
| 39 | +**xlutils.save** |
| 40 | + Tools for serializing xlrd.Book objects back to Excel files. |
| 41 | + |
| 42 | +**xlutils.styles** |
| 43 | + Tools for working with formatting information expressed in styles. |
| 44 | + |
| 45 | +Installation |
| 46 | +============ |
| 47 | + |
| 48 | +Do the following in your virtualenv:: |
| 49 | + |
| 50 | + pip install xlutils |
| 51 | + |
5 | 52 | For full documentation please see:
|
6 | 53 | http://www.simplistix.co.uk/software/python/xlutils
|
7 | 54 |
|
8 | 55 | If working offline, please consult the documentation source in the
|
9 | 56 | `docs` directory.
|
10 | 57 |
|
| 58 | +Documentation |
| 59 | +============= |
| 60 | + |
| 61 | +The latest documentation can also be found at: |
| 62 | +http://xlutils.readthedocs.org/en/latest/ |
| 63 | + |
| 64 | +Problems? |
| 65 | +========= |
| 66 | +Try the following in this order: |
| 67 | + |
| 68 | +- Read the source |
| 69 | + |
| 70 | +- Ask a question on http://groups.google.com/group/python-excel/ |
| 71 | + |
11 | 72 | Licensing
|
12 | 73 | =========
|
13 | 74 |
|
|
0 commit comments