Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

bpython(1) [debian man page]

BPYTHON(1)						      General Commands Manual							BPYTHON(1)

NAME
bpython - a fancy curses interface to the Python interactive interpreter SYNOPSIS
bpython [options] [file [args]] DESCRIPTION
The idea is to provide the user with all the features in-line, much like modern IDEs, but in a simple, lightweight package that can be run in a terminal window. * In-line syntax highlighting. Hilights commands as you type! * Readline-like autocomplete with suggestions displayed as you type. Press tab to complete expressions when there's only one suggestion. * Expected parameter list. This displays a list of parameters for any function you call. It uses the inspect module, then tries pydoc. * Rewind. This is a bit misleading, but it code that has been entered is remembered, and when you Rewind, it pops the last line and re-evalu- ates the entire code. This is error-prone, and mostly useful for defining classes and functions. * Pastebin code/write to file. This posts the current buffer to a pastebin (paste.pocoo.org) or writes it to a file. * Flush curses screen to stdout. Unlike other curses apps, bpython dumps the screen data to stdout when you quit, so you see what you've done in the buffer of your terminal. OPTIONS
The long and short forms of options, shown here as alternatives, are equivalent. If bpython sees an argument it does not know, execution falls back to the regular Python interpreter. --config=config Use config instead of default config file. -h --help Show the help message and exit. -i --interactive Drop to bpython shell after running file instead of exiting. The PYTHONSTARTUP file is not read. -q --quiet Do not flush the output to stdout. -V --version Print bpython's version and exit. KEYS
bpython's keys are fully configurable. See http://docs.bpython-interpreter.org/configuration.html#keyboard FILES
~/.bpython/config Your bpython config. See sample-config (in /usr/share/doc/bpython/examples on Debian) for various options you can use, or read bpython-config(5) . KNOWN BUGS
See http://bitbucket.org/bobf/bpython/issues/ for a list of known issues. SEE ALSO
bpython-config(5), python(1). AUTHOR
bpython was written by Robert Anthony Farrell <robertanthonyfarrel@gmail.com> and his bunch of loyal followers. This manual page was written by Jorgen Pedersen Tjerno <jorgen@devsoft.no>, for the Debian project (but may be used by others). September 21, 2009 BPYTHON(1)

Check Out this Related Man Page

APT-EXTRACTTEMPLATE(1)							APT						    APT-EXTRACTTEMPLATE(1)

NAME
apt-extracttemplates - Utility to extract debconf config and templates from Debian packages SYNOPSIS
apt-extracttemplates [-t=temporary_directory] filename... {-v | --version} {-h | --help} DESCRIPTION
apt-extracttemplates will take one or more Debian package files as input and write out (to a temporary directory) all associated config scripts and template files. For each passed in package that contains config scripts and templates, one line of output will be generated in the format: package version template-file config-script template-file and config-script are written to the temporary directory specified by the -t or --tempdir (APT::ExtractTemplates::TempDir) directory, with filenames of the form package.template.XXXX and package.config.XXXX OPTIONS
All command line options may be set using the configuration file, the descriptions indicate the configuration option to set. For boolean options you can override the config file by using something like -f-,--no-f, -f=no or several other variations. -t, --tempdir Temporary directory in which to write extracted debconf template files and config scripts. Configuration Item: APT::ExtractTemplates::TempDir -h, --help Show a short usage summary. -v, --version Show the program version. -c, --config-file Configuration File; Specify a configuration file to use. The program will read the default configuration file and then this configuration file. If configuration settings need to be set before the default configuration files are parsed specify a file with the APT_CONFIG environment variable. See apt.conf(5) for syntax information. -o, --option Set a Configuration Option; This will set an arbitrary configuration option. The syntax is -o Foo::Bar=bar. -o and --option can be used multiple times to set different options. SEE ALSO
apt.conf(5) DIAGNOSTICS
apt-extracttemplates returns zero on normal operation, decimal 100 on error. BUGS
APT bug page[1]. If you wish to report a bug in APT, please see /usr/share/doc/debian/bug-reporting.txt or the reportbug(1) command. AUTHORS
Jason Gunthorpe APT team NOTES
1. APT bug page http://bugs.debian.org/src:apt APT 0.9.7.9 09 June 2012 APT-EXTRACTTEMPLATE(1)
Man Page