How to add autocompletion to a pip package `console_scripts` entry point?

295 Views Asked by At

There's many resources floating around on how to hook up your own Python shell with autocompletion (using readline, or rcompleter) but none seem to mention how to do this for the command wrappers generated for pkg_resources' console_scripts. Is it possible to have pip register autocompletion for an installed package's commands?

> pip install my_pkg
> my_pkg <autocompletion>

I register the my_pkg command like this in setup.py:

setuptools.setup(
    # ...
    entry_points={"console_scripts": ["my_pkg = my_pkg:cli"]}
)
1

There are 1 best solutions below

1
On

you must mkdir dir in root

like this

|-- setup.py

|-- your_lib_dir

|---- my_pkg.py
setuptools.setup(
    # ...
    entry_points={"console_scripts": ["my_pkg = your_lib_dir:my_pkg:cli"]}
)