8000 0.6.6 - minor update on log by chfw · Pull Request #113 · pyexcel/pyexcel-io · GitHub
[go: up one dir, main page]

Skip to content

0.6.6 - minor update on log #113

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Jan 29, 2022
Prev Previous commit
Next Next commit
Update extensions.rst
  • Loading branch information
chfw authored Oct 29, 2021
commit c42181f81bed2c57d4dc96ea253c5c910dd4773c
8 changes: 4 additions & 4 deletions docs/source/extensions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ First, let's implement reader interface:
`YourSingleSheet` makes this simple task complex in order to show case its inner
workings. Two abstract functions require implementation:

1. `row_iterator`: should return a row: either content arry or content index as long as
`column_iterator` understands
1. `row_iterator`: should return a row: either content arary or content index as long as
`column_iterator` can use it to return the cell value.

2. `column_iterator`: should return cell values one by one.
2. `column_iterator`: should iterate cell value from the given row.

.. literalinclude:: ../../examples/custom_yaml_reader.py
:language: python
Expand All @@ -64,7 +64,7 @@ files on physical disk. "memory" means a file stream. "content" means a string b
:lines: 36-41

Usually, this registration code was placed in __init__.py file at the top level of your
extension source tree.
extension source tree. You can take a look at any pyexcel plugins for reference.

**Test your reader**

Expand Down
0