• 大小: 1.13MB
    文件类型: .tar
    金币: 2
    下载: 4 次
    发布日期: 2023-11-06
  • 语言: Python
  • 标签: python  xlrd  

资源简介

python源码安装包xlrd-1.2.0.tar,解压后 python setup.py install进行安装.

资源截图

代码片段和文件信息

from setuptools import setup

from xlrd.info import __VERSION__

setup(
    name = ‘xlrd‘
    version = __VERSION__
    author = ‘John Machin‘
    author_email = ‘sjmachin@lexicon.net‘
    url = ‘http://www.python-excel.org/‘
    packages = [‘xlrd‘]
    scripts = [
        ‘scripts/runxlrd.py‘
    ]
    description = (
        ‘Library for developers to extract data from ‘
        ‘Microsoft Excel (tm) spreadsheet files‘
    )
    long_description = (
        “Extract data from Excel spreadsheets “
        “(.xls and .xlsx versions 2.0 onwards) on any platform. “
        “Pure Python (2.7 3.4+). “
        “Strong support for Excel dates. Unicode-aware.“
    )
    platforms = [“Any platform -- don‘t need Windows“]
    license = ‘BSD‘
    keywords = [‘xls‘ ‘excel‘ ‘spreadsheet‘ ‘workbook‘]
    classifiers = [
        ‘Development Status :: 5 - Production/Stable‘
        ‘Intended Audience :: Developers‘
        ‘License :: OSI Approved :: BSD License‘
        ‘Programming Language :: Python‘
        ‘Programming Language :: Python :: 2‘
        ‘Programming Language :: Python :: 2.7‘
        ‘Programming Language :: Python :: 3‘
        ‘Programming Language :: Python :: 3.4‘
        ‘Programming Language :: Python :: 3.5‘
        ‘Programming Language :: Python :: 3.6‘
        ‘Programming Language :: Python :: 3.7‘
        ‘Operating System :: OS Independent‘
        ‘Topic :: Database‘
        ‘Topic :: Office/Business‘
        ‘Topic :: Software Development :: Libraries :: Python Modules‘
    ]
    python_requires=“>=2.7 !=3.0.* !=3.1.* !=3.2.* !=3.3.*“


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1178  2015-09-05 10:40  [content_types].xml
     目录           0  2015-09-05 10:29  xl\
     目录           0  2015-09-05 10:39  xl\_rels\
     文件         812  2015-09-05 10:39  xl\_rels\workbook.xml.rels
     文件        3332  2010-07-16 09:55  xl\sharedstrings.xml
     文件        4671  2010-07-16 09:55  xl\styles.xml
     文件         603  2010-07-16 09:55  xl\workbook.xml
     目录           0  2015-09-05 10:38  xl\worksheets\
     文件      269094  2010-07-16 09:55  xl\worksheets\Sheet1.xml
     文件      269107  2010-07-16 09:55  xl\worksheets\sheet2.xml
     目录           0  2015-09-05 10:29  _rels\
     文件         370  2010-07-16 09:55  _rels\.rels

评论

共有 条评论