Skip to content

Commit 8fe0a3d

Browse files
committed
interface update
1 parent 5498a63 commit 8fe0a3d

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
===========
2-
pyexcel-xl
3-
===========
1+
=============
2+
pyexcel-xlsx
3+
=============
44

55
.. image:: https://travis-ci.org/chfw/pyexcel-xlsx.svg
66
:target: https://travis-ci.org/chfw/pyexcel-xlsx
@@ -17,7 +17,7 @@ pyexcel-xl
1717
.. image:: https://pypip.in/implementation/pyexcel-xlsx/badge.png
1818
:target: https://pypi.python.org/pypi/pyexcel-xlsx
1919

20-
**pyexcel-xlsx** is a tiny wrapper library to read, manipulate and write data in xls, xlsx and xlsm fromat. You are likely to use it with `pyexcel <https://github.com/chfw/pyexcel>`__.
20+
**pyexcel-xlsx** is a tiny wrapper library to read, manipulate and write data in xlsx and xlsm fromat using openpyxl. You are likely to use it with `pyexcel <https://github.com/chfw/pyexcel>`__.
2121

2222
Installation
2323
============

pyexcel_xlsx/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ class XLSXSheet(SheetReader):
3333
"""
3434
def __init__(self, sheet):
3535
SheetReader.__init__(self, sheet)
36-
self.name = sheet.title
36+
37+
@property
38+
def name(self):
39+
return self.native_sheet.title
3740

3841
def number_of_rows(self):
3942
"""

0 commit comments

Comments
 (0)