Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Custom Interactive Shell with AutoComplete

I have been tasked to create an interactive shell to be embedded in python, such that, when called from the command line it will be dropped into that shell. Can anyone recommend me a library that does this?

I would need the ability to create custom words, "actions," so when the user types those words, my program can execute the correct function that I have created. I would also like the ability of auto complete / tab complete on the custom words I created.

Example:

$ python myapplication.py
$ myapp> 
$ myapp> help
   ... prints the help menu
$ myapp> run service blah
   .. service blah runs ...
$ myapp> exit
$ 
like image 500
Adam Avatar asked Oct 06 '14 23:10

Adam


1 Answers

Try this cmd module. It's designed for that purpose.

like image 184
Travis Avatar answered Oct 09 '22 17:10

Travis