-
-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd68b02
commit 9c4402c
Showing
1 changed file
with
5 additions
and
37 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,7 +1,9 @@ | ||
#!/usr/bin/env python | ||
"""Library allowing a sh like infix syntax using pipes.""" | ||
|
||
"""Module enabling a sh like infix syntax (using pipes). | ||
""" | ||
__author__ = "Julien Palard <[email protected]>" | ||
__version__ = "2.0" | ||
__credits__ = """Jérôme Schneider for teaching me the Python datamodel, | ||
and all contributors.""" | ||
|
||
import functools | ||
import itertools | ||
|
@@ -12,40 +14,6 @@ | |
import builtins | ||
|
||
|
||
__author__ = "Julien Palard <[email protected]>" | ||
__credits__ = """Jerome Schneider, for his Python skillz, | ||
and dalexander for contributing""" | ||
__date__ = "27 Jul 2018" | ||
__version__ = "1.6.0" | ||
__all__ = [ | ||
"Pipe", | ||
"chain", | ||
"chain_with", | ||
"dedup", | ||
"filter", | ||
"groupby", | ||
"islice", | ||
"izip", | ||
"map", | ||
"netcat", | ||
"permutations", | ||
"reverse", | ||
"select", | ||
"skip", | ||
"skip_while", | ||
"sort", | ||
"t", | ||
"tail", | ||
"take", | ||
"take_while", | ||
"tee", | ||
"transpose", | ||
"traverse", | ||
"uniq", | ||
"where", | ||
] | ||
|
||
|
||
class Pipe: | ||
""" | ||
Represent a Pipeable Element : | ||
|