- 授权协议: GPL
- 开发语言: Python
- 操作系统: 跨平台
- 软件首页: http://openpyxl.readthedocs.io/en/stable/
- 软件文档: http://openpyxl.readthedocs.io/en/stable/
软件介绍
Openpyxl是一个python读写Excel 2010 文件的库。
示例代码如下:
from openpyxl import Workbook
wb = Workbook()
# grab the active worksheet
ws = wb.active
# Data can be assigned directly to cells
ws['A1'] = 42
# Rows can also be appended
ws.append([1, 2, 3])
# Python types will automatically be converted
import datetime
ws['A2'] = datetime.datetime.now()
# Save the file
wb.save("sample.xlsx")
Making Things See
Greg Borenstein / Make / 2012-2-3 / USD 39.99
Welcome to the Vision Revolution. With Microsoft's Kinect leading the way, you can now use 3D computer vision technology to build digital 3D models of people and objects that you can manipulate with g......一起来看看 《Making Things See》 这本书的介绍吧!
