summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2020-01-26 22:04:54 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2020-01-26 22:04:54 -0500
commit2a0ded26b7af49ffd287046d89501e0c122d80ed (patch)
treedac5fdbaf341aaebc2548d41926c35b1692a330c /examples
parent3671619863dfc85f24d1ba9121ebd8bd3329b724 (diff)
downloadcmd2-git-2a0ded26b7af49ffd287046d89501e0c122d80ed.tar.gz
Improved example in initialiation docs
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/initialization.py60
1 files changed, 60 insertions, 0 deletions
diff --git a/examples/initialization.py b/examples/initialization.py
new file mode 100755
index 00000000..e26aac9f
--- /dev/null
+++ b/examples/initialization.py
@@ -0,0 +1,60 @@
+#!/usr/bin/env python3
+# coding=utf-8
+"""A simple example cmd2 application demonstrating the following:
+ 1) Colorizing/stylizing output
+ 2) Using multiline commands
+ 3) Persistent history
+ 4) How to run an initialization script at startup
+ 5) How to group and categorize commands when displaying them in help
+ 6) Opting-in to using the ipy command to run an IPython shell
+ 7) Allowing access to your application in py and ipy
+ 8) Displaying an intro banner upon starting your application
+ 9) Using a custom prompt
+ 10) How to make custom attributes settable at runtime
+"""
+import cmd2
+from cmd2 import style
+
+
+class BasicApp(cmd2.Cmd):
+ CUSTOM_CATEGORY = 'My Custom Commands'
+
+ def __init__(self):
+ super().__init__(multiline_commands=['echo'], persistent_history_file='cmd2_history.dat',
+ startup_script='scripts/startup.txt', use_ipython=True)
+
+ # Prints an intro banner once upon application startup
+ self.intro = style('Welcome to cmd2!', fg='red', bg='white', bold=True)
+
+ # Show this as the prompt when asking for input
+ self.prompt = 'myapp> '
+
+ # Used as prompt for multiline commands after the first line
+ self.continuation_prompt = '... '
+
+ # Allow access to your application in py and ipy via self
+ self.locals_in_py = True
+
+ # Set the default category name
+ self.default_category = 'cmd2 Built-in Commands'
+
+ # Color to output text in with echo command
+ self.foreground_color = 'cyan'
+
+ # Make echo_fg settable at runtime
+ self.settable['foreground_color'] = 'Foreground color to use with echo command'
+
+ @cmd2.with_category(CUSTOM_CATEGORY)
+ def do_intro(self, _):
+ """Display the intro banner"""
+ self.poutput(self.intro)
+
+ @cmd2.with_category(CUSTOM_CATEGORY)
+ def do_echo(self, arg):
+ """Example of a multiline command"""
+ self.poutput(style(arg, fg=self.foreground_color))
+
+
+if __name__ == '__main__':
+ app = BasicApp()
+ app.cmdloop()