An open API service indexing awesome lists of open source software.

https://github.com/taojy123/xleditor

方便的打开并和编辑 xls/xlsx 文档 (集成 xlrd 和 xlutils)
https://github.com/taojy123/xleditor

editor excel python xls xlsx

Last synced: 5 months ago
JSON representation

方便的打开并和编辑 xls/xlsx 文档 (集成 xlrd 和 xlutils)

Awesome Lists containing this project

README

          

# xleditor
打开并在原有基础上编辑 xls / xlsx 文档

Useage:

```
# pip install xleditor

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')

```