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)
- Host: GitHub
- URL: https://github.com/taojy123/xleditor
- Owner: taojy123
- License: mit
- Created: 2017-07-21T03:37:10.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-12-10T08:49:43.000Z (almost 5 years ago)
- Last Synced: 2025-03-31T17:59:03.258Z (6 months ago)
- Topics: editor, excel, python, xls, xlsx
- Language: Python
- Homepage: https://pypi.org/project/xleditor/
- Size: 9.77 KB
- Stars: 6
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# xleditor
打开并在原有基础上编辑 xls / xlsx 文档Useage:
```
# pip install xleditorimport 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')
```