File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -41,10 +41,10 @@ First, let's implement reader interface:
41
41
`YourSingleSheet ` makes this simple task complex in order to show case its inner
42
42
workings. Two abstract functions require implementation:
43
43
44
- 1. `row_iterator `: should return a row: either content arry or content index as long as
45
- `column_iterator ` understands
44
+ 1. `row_iterator `: should return a row: either content arary or content index as long as
45
+ `column_iterator ` can use it to return the cell value.
46
46
47
- 2. `column_iterator `: should return cell values one by one .
47
+ 2. `column_iterator `: should iterate cell value from the given row .
48
48
49
49
.. literalinclude :: ../../examples/custom_yaml_reader.py
50
50
:language: python
@@ -64,7 +64,7 @@ files on physical disk. "memory" means a file stream. "content" means a string b
64
64
:lines: 36-41
65
65
66
66
Usually, this registration code was placed in __init__.py file at the top level of your
67
- extension source tree.
67
+ extension source tree. You can take a look at any pyexcel plugins for reference.
68
68
69
69
**Test your reader **
70
70
You can’t perform that action at this time.
0 commit comments