Skip to main content

Library for building powerful interactive command lines in Python

Project description

Build Status Latest Version

prompt_toolkit is a library for building powerful interactive command lines and terminal applications in Python.

Read the documentation on readthedocs.

Ptpython

ptpython is an interactive Python Shell, build on top of prompt-toolkit.

https://github.com/jonathanslenders/python-prompt-toolkit/raw/master/docs/images/ptpython.png

prompt-toolkit features

prompt_toolkit could be a replacement for GNU readline, but it can be much more than that.

Some features:

  • Pure Python.

  • Syntax highlighting of the input while typing. (For instance, with a Pygments lexer.)

  • Multi-line input editing.

  • Advanced code completion.

  • Both Emacs and Vi key bindings. (Similar to readline.)

  • Reverse and forward incremental search.

  • Runs on all Python versions from 2.6 up to 3.4.

  • Works well with Unicode double width characters. (Chinese input.)

  • Selecting text for copy/paste. (Both Emacs and Vi style.)

  • Support for bracketed paste.

  • Mouse support for cursor positioning and scrolling.

  • Auto suggestions. (Like fish shell.)

  • Multiple input buffers.

  • No global state.

  • Lightweight, the only dependencies are Pygments, six and wcwidth.

  • Code written with love.

  • Runs on Linux, OS X, OpenBSD and Windows systems.

Feel free to create tickets for bugs and feature requests, and create pull requests if you have nice patches that you would like to share with others.

About Windows support

prompt_toolkit is cross platform, and everything that you build on top should run fine on both Unix and Windows systems. On Windows, it uses a different event loop (WaitForMultipleObjects instead of select), and another input and output system. (Win32 APIs instead of pseudo-terminals and VT100.)

It’s worth noting that the implementation is a “best effort of what is possible”. Both Unix and Windows terminals have their limitations. But in general, the Unix experience will still be a little better.

For Windows, it’s recommended to use either cmder or conemu.

Installation

pip install prompt-toolkit

For Conda, do:

conda install -c https://conda.anaconda.org/conda-forge prompt_toolkit

Getting started

The most simple example of the library would look like this:

from prompt_toolkit import prompt

if __name__ == '__main__':
    answer = prompt('Give me some input: ')
    print('You said: %s' % answer)

For more complex examples, have a look in the examples directory. All examples are chosen to demonstrate only one thing. Also, don’t be afraid to look at the source code. The implementation of the prompt function could be a good start.

Note: For Python 2, you need to add from __future__ import unicode_literals to the above example. All strings are expected to be unicode strings.

Projects using prompt-toolkit

Shells:

  • ptpython: Python REPL

  • ptpdb: Python debugger (pdb replacement)

  • pgcli: Postgres client.

  • mycli: MySql client.

  • wharfee: A Docker command line.

  • xonsh: A Python-ish, BASHwards-compatible shell.

  • saws: A Supercharged AWS Command Line Interface.

  • cycli: A Command Line Interface for Cypher.

  • crash: Crate command line client.

  • vcli: Vertica client.

  • aws-shell: An integrated shell for working with the AWS CLI.

  • softlayer-python: A command-line interface to manage various SoftLayer products and services.

Full screen applications:

  • pymux: A terminal multiplexer (like tmux) in pure Python.

  • pyvim: A Vim clone in pure Python.

(Want your own project to be listed here? Please create a GitHub issue.)

Philosophy

The source code of prompt_toolkit should be readable, concise and efficient. We prefer short functions focussing each on one task and for which the input and output types are clearly specified. We mostly prefer composition over inheritance, because inheritance can result in too much functionality in the same object. We prefer immutable objects where possible (objects don’t change after initialisation). Reusability is important. We absolutely refrain from having a changing global state, it should be possible to have multiple independent instances of the same code in the same process. The architecture should be layered: the lower levels operate on primitive operations and data structures giving – when correctly combined – all the possible flexibility; while at the higher level, there should be a simpler API, ready-to-use and sufficient for most use cases. Thinking about algorithms and efficiency is important, but avoid premature optimization.

Special thanks to

  • Pygments: Syntax highlighter.

  • wcwidth: Determine columns needed for a wide characters.

Project details


Release history Release notifications | RSS feed

This version

0.58

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

prompt_toolkit-0.58.tar.gz (191.7 kB view details)

Uploaded Source

Built Distributions

prompt_toolkit-0.58-py3-none-any.whl (224.6 kB view details)

Uploaded Python 3

prompt_toolkit-0.58-py2-none-any.whl (224.6 kB view details)

Uploaded Python 2

File details

Details for the file prompt_toolkit-0.58.tar.gz.

File metadata

File hashes

Hashes for prompt_toolkit-0.58.tar.gz
Algorithm Hash digest
SHA256 11b5109858bf5480a4823f1d5f4c3e45e97e6f3d1c2024b06f54ca73314eaca3
MD5 158cff2aa0a82e9c08ece1f6b3522c67
BLAKE2b-256 457b47b4bf4444b415a26044b7d3ddf85e6d585f1e089b2b64983f2188db7a77

See more details on using hashes here.

Provenance

File details

Details for the file prompt_toolkit-0.58-py3-none-any.whl.

File metadata

File hashes

Hashes for prompt_toolkit-0.58-py3-none-any.whl
Algorithm Hash digest
SHA256 3a14b8bb0c5e9758a70bd4199588131d1f0474577abb0d8a6374141d3c727b43
MD5 6970ef03e0040aae38283b57850a6fd9
BLAKE2b-256 b9877c80301e1d98a2e117869b7a63fb5ceb3b904ffc7e06e8e5d026f7ad2950

See more details on using hashes here.

Provenance

File details

Details for the file prompt_toolkit-0.58-py2-none-any.whl.

File metadata

File hashes

Hashes for prompt_toolkit-0.58-py2-none-any.whl
Algorithm Hash digest
SHA256 e47a99cc6e852bde14ce7c1350cd4c679c34ea997eb60f17f414c5b672b4ff56
MD5 e75fdf39d8f6db827274b30524e80279
BLAKE2b-256 fd3546a04eb9c53c4cf94fb02a379bf95fc1e54dfbde8dc91c430955841d3dfa

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page