I would like to get auto-completion on my python scripts also in the arguments.

I had never really understood how the bash_completion worked (for arguments), but after I digged in I understood that:

  1. it uses "complete" to bind a completing function to a command
  2. every completing function basically is a copy of the argument parser

The second point in particular is not great, because I would like to have it automatically generated.

The best thing would be that the shell asks to my program at every TAB about what to complete, but I have the impression that this can't really work, is that correct?

The second option is probably just to write a converter from an argparse parser to a shell function which completes correctly.

link|improve this question

78% accept rate
4  
Have you seen this thread bugs.python.org/issue4256? It also seems that optparse has automatic shell completion support: pypi.python.org/pypi/optcomplete – Chris Dec 5 '11 at 16:28
feedback

2 Answers

up vote 2 down vote accepted

Implementing Auto Complete would not be an easy task. Your solution should be both space and time optimized. If space is not a constraint you can try to use a Trie, a simple algorithm to implement. A more complex approach is to use Ternary Tree as mentioned in this blog.

Though the algorithm is in C# but you can easily adapt it to use in python.

A quick google with the text python auto complete script gave some interesting results. You may try to experiment with them.

link|improve this answer
feedback

Bash "completion" really is great. And easy for programs written in Python....

I think this is just what you want: optcomplete: Shell Completion Self-Generator for Python. It is available, e.g., as the "python-optcomplete" package in Ubuntu.

You insert a few lines in your python program, and the user (one time) runs the bash "complete" program to tell bash how to complete the arguments:

complete -F _optcomplete <program>

and now the user has completion! By default it gives simple completion on program options. See the example for how to customize how completion works for a particular option. It is beautifully written, and easy to extend to handle sub-commands, alternate completion options, etc.!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.