Skip to content

Commit c721686

Browse files
committed
announce pyexcel-xlsxr 0.5.0, first partial reading library for xlsx, not to read all in memory
1 parent bc29815 commit c721686

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ The highlighted features are:
102102
Package name Supported file formats Dependencies Python versions
103103
======================== ======================= ================= ==================
104104
`pyexcel-xlsxw`_ xlsx(write only) `XlsxWriter`_ Python 2 and 3
105+
`pyexcel-xlsxr`_ xlsx(read only) lxml same as above
105106
`pyexcel-odsr`_ read only for ods, fods lxml same as above
106107
`pyexcel-htmlr`_ html(read only) lxml,html5lib same as above
107108
======================== ======================= ================= ==================
@@ -114,6 +115,7 @@ The highlighted features are:
114115
.. _pyexcel-ods3: https://github.com/pyexcel/pyexcel-ods3
115116
.. _pyexcel-odsr: https://github.com/pyexcel/pyexcel-odsr
116117
.. _pyexcel-xlsxw: https://github.com/pyexcel/pyexcel-xlsxw
118+
.. _pyexcel-xlsxr: https://github.com/pyexcel/pyexcel-xlsxr
117119
.. _pyexcel-htmlr: https://github.com/pyexcel/pyexcel-htmlr
118120

119121
.. _xlrd: https://github.com/python-excel/xlrd

docs/source/index.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ The highlighted features are:
7676
Package name Supported file formats Dependencies Python versions
7777
======================== ======================= ================= ==================
7878
`pyexcel-xlsxw`_ xlsx(write only) `XlsxWriter`_ Python 2 and 3
79+
`pyexcel-xlsxr`_ xlsx(read only) lxml same as above
7980
`pyexcel-odsr`_ read only for ods, fods lxml same as above
8081
`pyexcel-htmlr`_ html(read only) lxml,html5lib same as above
8182
======================== ======================= ================= ==================
@@ -88,6 +89,7 @@ The highlighted features are:
8889
.. _pyexcel-ods3: https://github.com/pyexcel/pyexcel-ods3
8990
.. _pyexcel-odsr: https://github.com/pyexcel/pyexcel-odsr
9091
.. _pyexcel-xlsxw: https://github.com/pyexcel/pyexcel-xlsxw
92+
.. _pyexcel-xlsxr: https://github.com/pyexcel/pyexcel-xlsxr
9193
.. _pyexcel-htmlr: https://github.com/pyexcel/pyexcel-htmlr
9294

9395
.. _xlrd: https://github.com/python-excel/xlrd

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@
7373
"Find 0.0.9 in changelog for more details")
7474
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
7575
'Please install gease to enable it.')
76-
UPLOAD_FAILED_MSG = ('Upload failed. please run "%s" yourself.')
76+
UPLOAD_FAILED_MSG = (
77+
'Upload failed. please run "%s" yourself.' % PUBLISH_COMMAND)
7778
HERE = os.path.abspath(os.path.dirname(__file__))
7879

7980

0 commit comments

Comments
 (0)