1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
Source: pyp
Section: utils
Priority: extra
Maintainer: Python Applications Packaging Team <python-apps-team@lists.alioth.debian.org>
Uploaders: Khalid El Fathi <khalid@elfathi.fr>,
ChangZhuo Chen (陳昌倬) <czchen@debian.org>
Build-Depends: debhelper (>= 10),
dh-python,
python3-all,
Standards-Version: 3.9.8
Homepage: http://code.google.com/p/pyp
Vcs-Git: https://anonscm.debian.org/git/collab-maint/pyp.git
Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/pyp.git
X-Python3-Version: >= 3.3
Package: pyp
Architecture: all
Depends: ${misc:Depends},
${python3:Depends}
Description: sed/awk-like tool with Python language
pyp, the Pyed Piper, is a command line tool for text manipulation. It
is similar to awk and sed in functionality, but its subcommands are
Python based, and thus more familiar to many programmers.
.
It can operate both on a per-line base and on the complete input
stream. Different features can be pipelined in a single command by
using the pipe character familiar from shell commands.
.
pyp backs up its input for reruns with modified commands, and can save
commands as macros. On the downside, the rerun feature makes it
unsuitable for continuous pipe operation.
|