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
|
Source: pythonpy
Section: utils
Priority: optional
Maintainer: Tiago Ilieve <tiago.myhro@gmail.com>
Build-Depends: bash-completion,
debhelper-compat (= 13),
dh-python,
python3,
python3-setuptools
Build-Depends-Indep: txt2man
Standards-Version: 4.7.0
Homepage: https://github.com/Russell91/pythonpy
Rules-Requires-Root: no
Vcs-Git: https://salsa.debian.org/debian/pythonpy.git
Vcs-Browser: https://salsa.debian.org/debian/pythonpy
Package: pythonpy
Architecture: all
Depends: ${misc:Depends},
${python3:Depends}
Suggests: bash-completion
Description: 'python -c', with tab completion and shorthand
pythonpy is an utility that facilitates the usage of Python one-liners. The
command 'py' evaluates a string consisting of any Python expression. It can do
anything from simple arithmetic to complex operations, importing modules
automatically. It also comes with tab completion.
.
Its usage is not restricted to single expressions only. There's also the
possibility to pipe data from stdin and to stdout, even generating strings to
be evaluated by other programs.
|