We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d9e481 commit 85a6c2bCopy full SHA for 85a6c2b
README.rst
@@ -138,7 +138,7 @@ Here is the sample code::
138
>>> from pyexcel.ext import xls
139
140
# "example.xls"
141
- >>> sheet = pe.load_book("your_file.xls")
+ >>> sheet = pe.get_book(file_name="your_file.xls")
142
>>> sheet
143
Sheet Name: Sheet 1
144
+---+---+---+
@@ -169,7 +169,7 @@ You got to wrap the binary content with stream to get xls working::
169
>>> xlfile = "another_file.xls"
170
>>> with open(xlfile, "rb") as f:
171
... content = f.read()
172
- ... r = pe.load_book_from_memory("xls", content)
+ ... r = pe.get_book(file_type="xls", content=content)
173
... print(r)
174
...
175
0 commit comments