Tabcompleter

1.4.0 · active · verified Sun Apr 12

Tabcompleter is a Python library that provides autocompletion functionality in the Python console, enhancing the interactive experience. It is a friendly fork of the unmaintained `fancycompleter` package. The current version is 1.4.0, and releases occur as needed to address bugs and support newer Python versions.

Warnings

Install

Imports

Quickstart

To enable tab completion in your Python console, simply import the library and call its `install()` method. This will set up the necessary hooks for autocompletion.

import tabcompleter
tabcompleter.install()

view raw JSON →