Metadata-Version: 1.1
Name: excel2img
Version: 0.9
Summary: Save ranges from Excel documents as images
Home-page: https://github.com/glexey/excel2img
Author: Alexey Gadyukov
Author-email: glexey@gmail.com
License: UNKNOWN
Description: excel2img
        =========
        
        Save ranges from Excel documents as images
        
        Requirements
        ------------
        
        1. Python 2.7, 3.3 and later
        2. `pywin32 <http://sourceforge.net/projects/pywin32/files/pywin32>`__
        3. `Pillow <https://pypi.python.org/pypi/Pillow>`__ >= 3.3.1
        4. Microsoft Excel (tested with Office 2013, on Windows 10)
        
        Installation
        ------------
        
        .. code:: shell
        
            pip install excel2img
        
        Usage as python module
        ----------------------
        
        .. code:: python
        
            import excel2img
        
            # Save as PNG the range of used cells in test.xlsx on page named "Sheet1"
            excel2img.export_img("test.xlsx", "test.png", "Sheet1", None)
        
            # Save as BMP the range B2:C15 in test.xlsx on page named "Sheet2"
            excel2img.export_img("test.xlsx", "test.bmp", "", "Sheet2!B2:C15")
        
            # Save as GIF the range "MyNamedRange"
            excel2img.export_img("test.xlsx", "test.gif", "", "MyNamedRange")
        
        Usage from command line
        -----------------------
        
        .. code:: shell
        
            # Save as PNG the range of used cells in test.xlsx on first page
            python excel2img.py test.xlsx test.png
        
            # Save as PNG the range of used cells in test.xlsx on page "Sheet2"
            python excel2img.py test.xlsx test.png -p Sheet2
        
            # Save as PNG the range "MyNamedRange"
            python excel2img.py test.xlsx test.png -r MyNamedRange
        
            # More range syntax examples
            python excel2img.py test.xlsx test.gif -r 'Sheet3!B5:C8'
            python excel2img.py test.xlsx test.bmp -r 'Sheet4!SheetScopedNamedRange'
        
        Author
        =======
        
        Alexey Gaydyukov <glexey@gmail.com>
        
        License
        ========
        Apache License 2.0
        
        Credits
        ========
        Inspired by `visio2img <https://github.com/visio2img/visio2img>`__
        
        
Keywords: excel,range,image,CopyAsPicture
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Environment :: Win32 (MS Windows)
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Documentation
Classifier: Topic :: Multimedia :: Graphics :: Graphics Conversion
Classifier: Topic :: Office/Business :: Office Suites
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
