[![Build Status](https://travis-ci.org/python-excel/xlrd.svg?branch=master)](https://travis-ci.org/python-excel/xlrd)
[![Coverage Status](https://coveralls.io/repos/github/python-excel/xlrd/badge.svg?branch=master)](https://coveralls.io/github/python-excel/xlrd?branch=master)
[![Documentation Status](https://readthedocs.org/projects/xlrd/badge/?version=latest)](http://xlrd.readthedocs.io/en/latest/?badge=latest)
[![PyPI version](https://badge.fury.io/py/xlrd.svg)](https://badge.fury.io/py/xlrd)
### xlrd
Please read this before using this library: https://groups.google.com/d/msg/python-excel/P6TjJgFVjMI/g8d0eWxTBQAJ
**Purpose**: Provide a library for developers to use to extract data from Microsoft Excel (tm) spreadsheet files. It is not an end-user tool.
**Author**: John Machin, Lingfo Pty Ltd (sjmachin@lexicon.net)
**Licence**: BSD-style (see licences.py)
**Versions of Python supported**: 2.7, 3.4+.
**External modules required**:
The package itself is pure Python with no dependencies on modules or packages outside the standard Python distribution.
**Outside the current scope**: xlrd will safely and reliably ignore any of these if present in the file:
* Charts, Macros, Pictures, any other embedded object. WARNING: currently this includes embedded worksheets.
* VBA modules
* Formulas (results of formula calculations are extracted, of course).
* Comments
* Hyperlinks
* Autofilters, advanced filters, pivot tables, conditional formatting, data validation
**Unlikely to be done**:
* Handling password-protected (encrypted) files.
**Particular emphasis (refer docs for details)**:
* Operability across OS, regions, platforms
* Handling Excel's date problems, including the Windows / Macintosh four-year differential.
* Providing access to named constants and named groups of cells (from version 0.6.0)
* Providing access to "visual" information: font, "number format", background, border, alignment and protection for cells, height/width etc for rows/columns (from version 0.6.1)
**Quick start**:
```python
import xlrd
book = xlrd.open_workbook("myfile.xls")
print("The number of worksheets is {0}".format(book.nsheets))
print("Worksheet name(s): {0}".format(book.sheet_names()))
sh = book.sheet_by_index(0)
print("{0} {1} {2}".format(sh.name, sh.nrows, sh.ncols))
print("Cell D30 is {0}".format(sh.cell_value(rowx=29, colx=3)))
for rx in range(sh.nrows):
print(sh.row(rx))
```
**Another quick start**: This will show the first, second and last rows of each sheet in each file:
python PYDIR/scripts/runxlrd.py 3rows *blah*.xls
**Installation**:
* On Windows: use the installer.
* Any OS: Unzip the .zip file into a suitable directory, chdir to that directory, then do "python setup.py install".
* If PYDIR is your Python installation directory: the main files are in PYDIR/Lib/site-packages/xlrd the docs are in the doc subdirectory, and there's a sample script: PYDIR/Scripts/runxlrd.py
* If os.sep != "/": make the appropriate adjustments.
**Acknowledgements**:
* This package started life as a translation from C into Python of parts of a utility called "xlreader" developed by David Giffin. "This product includes software developed by David Giffin <david@giffin.org>."
* OpenOffice.org has truly excellent documentation of the Microsoft Excel file formats and Compound Document file format, authored by Daniel Rentz. See http://sc.openoffice.org
* U+5F20 U+654F: over a decade of inspiration, support, and interesting decoding opportunities.
* Ksenia Marasanova: sample Macintosh and non-Latin1 files, alpha testing
* Backporting to Python 2.1 was partially funded by Journyx - provider of timesheet and project accounting solutions (http://journyx.com/).
* Provision of formatting information in version 0.6.1 was funded by Simplistix Ltd (http://www.simplistix.co.uk/)
没有合适的资源?快使用搜索试试~ 我知道了~
Python2全套接口自动化框架搭建
共487个文件
py:345个
rst:25个
txt:21个
需积分: 5 0 下载量 180 浏览量
2022-08-29
16:17:37
上传
评论
收藏 657.07MB ZIP 举报
温馨提示
Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自动化框架搭建Python2全套接口自
资源推荐
资源详情
资源评论
收起资源包目录
Python2全套接口自动化框架搭建 (487个子文件)
make.bat 5KB
make.bat 5KB
python.bmp 37KB
python.bmp 37KB
setup.cfg 209B
setup.cfg 67B
setup.cfg 67B
setup.cfg 59B
setup.cfg 59B
CHANGES 22KB
使用python读取mysql数据库 .docx 83.21MB
Python+selenium环境搭建步骤.docx 1019KB
调用Excel数据参数化.docx 98KB
解决生成HTML报告有乱码的问题.docx 86KB
xlrd的使用.docx 84KB
Python+Requests实现接口自动化.docx 83KB
pycharm-professional-2018.1.4.exe 242.51MB
pycharm-community-5.0.3.exe 161.59MB
python-3.5.4-amd64.exe 28.47MB
chromedriver.exe 6.06MB
geckodriver.exe 5.42MB
IEDriverServer.exe 2.85MB
w9xpopen.exe 109KB
excel-formula.g 11KB
.gitignore 115B
.gitignore 91B
MANIFEST.in 915B
MANIFEST.in 100B
MANIFEST.in 100B
tox.ini 399B
tox.ini 399B
isDisplayed.js 43KB
getAttribute.js 6KB
webdriver_prefs.json 3KB
LICENSE 581B
LICENSE 581B
Makefile 5KB
Makefile 5KB
README.md 4KB
VCForPython27.msi 83.82MB
python-2.7.15.amd64.msi 19.31MB
python_2.7.13150.msi 18.27MB
not-zip-safe 1B
not-zip-safe 1B
not-zip-safe 1B
not-zip-safe(1) 1B
not-zip-safe(1) 1B
NOTICE 2KB
NOTICE 2KB
cacert.pem 337KB
cacert.pem 337KB
PKG-INFO 48KB
PKG-INFO 48KB
PKG-INFO 48KB
PKG-INFO 48KB
PKG-INFO 8KB
PKG-INFO 8KB
PKG-INFO 4KB
PKG-INFO 4KB
PKG-INFO 1KB
PKG-INFO 1KB
sheet.py 104KB
BIFFRecords.py 95KB
formula.py 92KB
antlr.py 82KB
big5freq.py 81KB
big5freq.py 81KB
book.py 56KB
Worksheet.py 47KB
jisfreq.py 46KB
jisfreq.py 46KB
euckrfreq.py 45KB
euckrfreq.py 45KB
formatting.py 44KB
webdriver.py 37KB
gb2312freq.py 35KB
gb2312freq.py 35KB
euctwfreq.py 34KB
euctwfreq.py 34KB
xlsx.py 33KB
connectionpool.py 33KB
connectionpool.py 33KB
models.py 30KB
models.py 30KB
six.py 29KB
six.py 29KB
ExcelMagic.py 28KB
sessions.py 25KB
sessions.py 25KB
HTMLTestRunner.py 24KB
remote_connection.py 24KB
utils.py 24KB
utils.py 24KB
Style.py 23KB
Workbook.py 23KB
ExcelFormulaParser.py 22KB
compdoc.py 20KB
adapters.py 19KB
adapters.py 19KB
mbcssm.py 19KB
共 487 条
- 1
- 2
- 3
- 4
- 5
资源评论
平头哥-测试
- 粉丝: 983
- 资源: 67
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- MATLAB代码:计及电转气协同的含碳捕集与垃圾焚烧电厂优化调度 关键词:碳捕集 电厂 需求响应 优化调度 电转气协同调度 参考文档:《计及电转气协同的含碳捕集与垃圾焚烧电厂优化调度》完全复现
- 关键词:微网 优化调度 深度强化学习 A3C 需求响应 编程语言:python平台 主题:基于改进A3C算法的微网优化调度与需求响应管理 内容简介: 代码主要做的是基于深度强化学习的微网
- cruise软件模型,混动仿真模型,IMMD架构混联混动仿真模型,Cruise混动仿真模型,混联混动汽车动力性经济性仿真 关于模型 1.本模型是基于IMMD架构搭载的混联混动仿真模型,关于IMMD架
- C#上位机开发源码 上位机项目源代码 采用基于RS485通讯总线的ModbusRtu协议,支持用户权限管理、sqlite数据库、实时曲线、历史曲线、历史报表、导出Excel、主界面布局可调带记忆等功能
- 基于plc的污水处理,组态王动画仿真,带PLC源代码,组态王源代码,图纸,IO地址分配
- Rhino(犀牛)插件ladybug-tools-1-8-0
- 三相10Kw光伏并网逆变器 包含全套理图 PCB 源代码
- MATLAB代码:考虑P2G和碳捕集设备的热电联供综合能源系统优化调度模型 关键词:碳捕集 综合能源系统 电转气P2G 热电联产 低碳调度 参考文档:Modeling and Optimiza
- 永磁同步直线电机仿真实例,仿真教学 maxwell16.0版本 12槽11极 包括图中模型以及一个仿真设置要点word文档教程
- 基于mpx+vue+node.js的双端网盘系统的设计与实现源代码全套技术资料.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功