Metadata-Version: 1.1
Name: xleditor
Version: 0.95
Summary: Easy to open xls/xlsx file and edit it (merge xlrd and xlutils)
Home-page: https://github.com/taojy123/xleditor
Author: TaoJY
Author-email: taojy123@163.com
License: MIT License
Description: # xleditor
        打开并在原有基础上编辑 xls / xlsx 文档
        
        
        Useage:
        
        ```
        # pip install xlrd
        # pip install xlutils
        
        import xleditor
        
        book = xleditor.open_workbook('old.xls')
        sheet = book.get_sheet_by_index(0)
        
        print sheet.get_value(3, 0)
        sheet.write(0, 5, 'hello world')
        
        book.save('new.xls')
        
        ```
Platform: all
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: Implementation
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries
