Home | Trees | Indices | Help |
|
---|
|
1 #!/usr/bin/env python 2 3 """RiveScript's __main__.py 4 5 This script is executed when you run `python rivescript` directly. 6 It does nothing more than load the interactive mode of RiveScript.""" 7 8 __docformat__ = 'plaintext' 9 10 from interactive import interactive_mode 11 12 if __name__ == "__main__": 13 interactive_mode() 14 15 # vim:expandtab 16
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Mon May 20 17:19:46 2013 | http://epydoc.sourceforge.net |