Skip to content

Commit

Permalink
Releasing v2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienPalard committed May 23, 2022
1 parent dd68b02 commit 9c4402c
Showing 1 changed file with 5 additions and 37 deletions.
42 changes: 5 additions & 37 deletions pipe.py
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 <julien@python.org>"
__version__ = "2.0"
__credits__ = """Jérôme Schneider for teaching me the Python datamodel,
and all contributors."""

import functools
import itertools
Expand All @@ -12,40 +14,6 @@
import builtins


__author__ = "Julien Palard <julien@eeple.fr>"
__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 :
Expand Down

0 comments on commit 9c4402c

Please sign in to comment.