Metadata-Version: 2.4
Name: xlutils
Version: 2.0.0
Summary: Utilities for working with Excel files that require both xlrd and xlwt
Home-page: http://www.python-excel.org
Author: Chris Withers
Author-email: chris@simplistix.co.uk
License: MIT
Keywords: excel xls xlrd xlwt
Classifier: Development Status :: 6 - Mature
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Office/Business :: Financial :: Spreadsheet
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: xlrd>=0.7.2
Requires-Dist: xlwt>=0.7.4
Provides-Extra: test
Requires-Dist: errorhandler; extra == "test"
Requires-Dist: manuel; extra == "test"
Requires-Dist: mock; extra == "test"
Requires-Dist: nose; extra == "test"
Requires-Dist: nose-fixes; extra == "test"
Requires-Dist: nose-cov; extra == "test"
Requires-Dist: coveralls; extra == "test"
Requires-Dist: testfixtures; extra == "test"
Requires-Dist: tox; extra == "test"
Provides-Extra: build
Requires-Dist: setuptools-git; extra == "build"
Requires-Dist: wheel; extra == "build"
Requires-Dist: twine; extra == "build"
Requires-Dist: sphinx; extra == "build"
Requires-Dist: pkginfo; extra == "build"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: summary

|Travis|_ |Coveralls|_ |Docs|_ |PyPI|_

.. |Travis| image:: https://api.travis-ci.org/python-excel/xlutils.svg?branch=master
.. _Travis: https://travis-ci.org/python-excel/xlutils

.. |Coveralls| image:: https://coveralls.io/repos/python-excel/xlutils/badge.svg?branch=master
.. _Coveralls: https://coveralls.io/r/python-excel/xlutils?branch=master

.. |Docs| image:: https://readthedocs.org/projects/xlutils/badge/?version=latest
.. _Docs: http://xlutils.readthedocs.org/en/latest/

.. |PyPI| image:: https://badge.fury.io/py/xlutils.svg
.. _PyPI: https://badge.fury.io/py/xlutils
    
xlutils
=======

This 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.
