python cmd.Cmd auto complete feature

  • Thread starter Jean-Michel Pichavant
  • Start date
J

Jean-Michel Pichavant

Hello folks,

I'm trying to autoexpand values as well as arguments using the builtin
cmd.Cmd class.

I.E.
Consider the following command and arguments:
sayHello target=Georges
'Hello Georges !'

I can easily make 'tar' expand into 'target=' however I'd like to be
able to expand the value as well, choosing the target within a
predefined list. ie.
sayHello target=<tab>
target=Georges target=Charles

However I have the feeling that cmd.Cmd consider the '=' character in
the way it will not try to expand anything beyond. When double tabbing
after the '=' it will print the list of available arguemnt (i.e
['target'] in the exemple above).
Ddd anyone successfuly expand values with cmd.Cmd ?

JM

Here a code sample illutrating the issue, type the linde "sayHello
target=<tab><tab>" to trigger the problem:

import cmd

class SayHello(cmd.Cmd):
def do_sayHello(self, line):
print 'Hello %s !' % line.split('=')[1]

def complete_sayHello(self, text, line, begidx, endidx):
cmds = ['target', 'anotherCmd']
targets = ['Georges', 'Charles']
if text.startswith('target='):
completions = [target for target in ['target=Georges',
'target=Charles'] if target.startswith(text)]
else:
completions = [_cmd for _cmd in cmds if _cmd.startswith(text)]
return completions

def do_EOF(self, line):
return True

if __name__ == '__main__':
SayHello().cmdloop()
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top