|
__init__(self,
search,
encoder=None,
shutdown=True,
**kwargs)
Instantiate a line-oriented interpreter framework. |
|
|
|
emptyline(self)
Called when an empty line is entered in response to the
prompt. |
|
|
|
cmdloop(self,
*args,
**kwargs)
KeyboardInterrupts exit gracefully. |
|
|
|
onecmd(self,
line)
Case insensitive commands |
|
|
|
precmd(self,
line)
Hook method executed just before the command line is interpreted,
but after the input prompt is generated and issued. |
|
|
|
postcmd(self,
stop,
line)
Hook method executed just after a command dispatch is
finished. |
|
|
|
|
|
do_time(self,
line)
USAGE: COMMAND time |
|
|
|
do_n(self,
line)
USAGE: n |
|
|
|
do_exit(self,
line)
Exit the interpreter. |
|
|
|
|
|
do_encode(self,
line)
USAGE: encode SMILES |
|
|
|
|
|
do_fsearch(self,
line)
USAGE: fsearch THRESHOLD RESULTS_START RESULTS_END
[WEIGHT|][ALPHA|BETA|]FINGERPRINT/SMILES [... |
|
|
|
|
|
do_prompt(self,
line)
USAGE: prompt NEWPROMPT |
|
|
|
do_get(self,
line)
USAGE: search ... |
|
|
|
|
|
do_alpha(self,
line)
USAGE: alpha [newvalue] |
|
|
|
do_beta(self,
line)
USAGE: beta [newvalue] |
|
|
|
do_shutdown(self,
line)
Exit command interpreter and shutdown server. |
|
|
Inherited from cmd.Cmd :
columnize ,
complete ,
complete_help ,
completedefault ,
completenames ,
default ,
do_help ,
get_names ,
parseline ,
postloop ,
preloop ,
print_topics
|