Commit d9e48a59 authored by Yuxin Wu's avatar Yuxin Wu

update docs (fix #208)

parent fafce22a
...@@ -695,14 +695,15 @@ class PrintData(ProxyDataFlow): ...@@ -695,14 +695,15 @@ class PrintData(ProxyDataFlow):
.. code-block:: python .. code-block:: python
def __iter__(): def create_my_dataflow():
ds = SomeDataSource('path/to/lmdb') ds = SomeDataSource('path/to/lmdb')
ds = SomeInscrutableMappings(ds) ds = SomeInscrutableMappings(ds)
ds = PrintData(ds, num=2, max_list=2) ds = PrintData(ds, num=2, max_list=2)
return ds return ds
ds = __iter__() ds = create_my_dataflow()
# other code that uses ds
The output looks like: When datapoints are taken from the dataflow, it will print outputs like:
.. code-block:: none .. code-block:: none
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment