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.
pip install tabcompleterVerified import paths — ran on the pinned version, not inferred.
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.
Upgrade your Python environment to version 3.8 or newer to use the latest tabcompleter releases.
Upgrade your Python environment to version 3.7 or newer (preferably 3.8+) to use tabcompleter.
Ensure you are using tabcompleter version 1.4.0 or newer if working with Python 3.13 on Windows.
For ongoing maintenance and compatibility with newer Python versions, prefer `tabcompleter` over `fancycompleter`.
Run `pip install tabcompleter` to install the package.
Replace `import fancycompleter` with `import tabcompleter` and update any calls from `fancycompleter.install()` to `tabcompleter.install()`.
Change `tabcompleter.Install()` to `tabcompleter.install()`.
No dependency data recorded yet.