forked from datalad/datalad-next
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reorder data processor code, update doc-strings
This commit addresses comment: datalad#484 (comment) It removes unrendered doc strings and reorders data processor code so that the data processor is on top of the source files. In addtion it adds `__all__` variables to limit imports to the objects that constitute the user-interface. The commit also adds doc-string rendering for the module `datalad_next.runners.data_processors` This includes markup fixes
- Loading branch information
1 parent
4e0ce6a
commit 134c0d0
Showing
6 changed files
with
128 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,19 @@ | ||
""" This module contains data processors for the data pipeline processor | ||
Available data processors: | ||
.. currentmodule:: datalad_next.runners.data_processors | ||
.. autosummary:: | ||
:toctree: generated | ||
decode | ||
jsonline | ||
pattern | ||
splitlines | ||
""" | ||
|
||
from .decode import decode_processor | ||
from .jsonline import jsonline_processor | ||
from .pattern import pattern_processor | ||
from .splitlines import splitlines_processor | ||
from .splitlines import splitlines_processor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,7 @@ packages. | |
exceptions | ||
iter_collections | ||
runners | ||
runners.data_processors | ||
tests.fixtures | ||
types | ||
uis | ||
|