__init__.py 632 B

12345678910111213141516171819202122
  1. """
  2. prompt_toolkit
  3. ==============
  4. Author: Jonathan Slenders
  5. Description: prompt_toolkit is a Library for building powerful interactive
  6. command lines in Python. It can be a replacement for GNU
  7. readline, but it can be much more than that.
  8. See the examples directory to learn about the usage.
  9. Probably, to get started, you meight also want to have a look at
  10. `prompt_toolkit.shortcuts.prompt`.
  11. """
  12. from .interface import CommandLineInterface
  13. from .application import AbortAction, Application
  14. from .shortcuts import prompt, prompt_async
  15. # Don't forget to update in `docs/conf.py`!
  16. __version__ = '1.0.18'