diff options
author | Eric Lin <anselor@gmail.com> | 2018-04-18 13:20:32 -0400 |
---|---|---|
committer | Eric Lin <anselor@gmail.com> | 2018-04-18 13:20:32 -0400 |
commit | 154fa93acfc3de44bd4d5e15c6704865427ee7ba (patch) | |
tree | 99b136f91852799ea8648e69433de1bc1fcabdff /main.py | |
parent | 94bea939abd9b701ecfd22af0c1c94b5764ad483 (diff) | |
download | cmd2-git-154fa93acfc3de44bd4d5e15c6704865427ee7ba.tar.gz |
Adds main.py to run base cmd2 directly for development testing purposes.
Diffstat (limited to 'main.py')
-rw-r--r-- | main.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/main.py b/main.py new file mode 100644 index 00000000..a0539bd0 --- /dev/null +++ b/main.py @@ -0,0 +1,12 @@ +#!/usr/bin/env python +# coding=utf-8 + +from cmd2 import Cmd + +if __name__ == '__main__': + # If run as the main application, simply start a bare-bones cmd2 application with only built-in functionality. + + # Set "use_ipython" to True to include the ipy command if IPython is installed, which supports advanced interactive + # debugging of your application via introspection on self. + app = Cmd(use_ipython=False) + app.cmdloop() |