| Home | Trees | Indices | Help |
|---|
|
|
1 """ 2 The shell service. This is for executing local shell commands and retrieve the output. 3 """ 4 5 from service import Service 6 723 2410 super(ShellService, self).__init__(**kwargs) 11 12 args = self.get_arguments() 13 if "command" in args: 14 self.command = args["command"] 15 else: 16 raise Exception("There is no command argument")17 2026 return ShellService(**kwargs)27
| Home | Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0.1 on Tue Jun 18 03:07:34 2013 | http://epydoc.sourceforge.net |