diff options
author | Federico Ceratto <federico.ceratto@gmail.com> | 2017-01-23 16:17:40 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-23 16:17:40 +0000 |
commit | 3cf60ac6d88fd15df40b5b6fe5a590d7276ef14d (patch) | |
tree | 929394a205a8685a98167ced08bb01deac7343d8 | |
parent | 1d3bd562aa69dc50249974fd96dfd39d6dd28c7c (diff) | |
download | cmd2-git-3cf60ac6d88fd15df40b5b6fe5a590d7276ef14d.tar.gz |
Add tutorial
-rwxr-xr-x | README.rst | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -80,10 +80,12 @@ Instructions for implementing each feature follow. See Python standard library's `optparse` documentation: http://docs.python.org/lib/optparse-defining-options.html
-cmd2 can be installed from a Linux distribution or using `pip install cmd2`
+cmd2 can be installed from a Linux distribution using their default package manager or `pip install cmd2`
Cheese Shop page: http://pypi.python.org/pypi/cmd2
+A nice step-by-step tutorial: https://kushaldas.in/posts/developing-command-line-interpreters-using-python-cmd2.html
+
Example cmd2 application (example/example.py) ::
'''A sample application for cmd2.'''
|