Shellmen/src/libs/prompt_toolkit/__init__.py

23 lines
647 B
Python

"""
libs.prompt_toolkit
==============
Author: Jonathan Slenders
Description: libs.prompt_toolkit is a Library for building powerful interactive
command lines in Python. It can be a replacement for GNU
readline, but it can be much more than that.
See the examples directory to learn about the usage.
Probably, to get started, you meight also want to have a look at
`libs.prompt_toolkit.shortcuts.prompt`.
"""
from .interface import CommandLineInterface
from .application import AbortAction, Application
from .shortcuts import prompt, prompt_async
# Don't forget to update in `docs/conf.py`!
__version__ = '1.0.14'