Package rivescript :: Module __main__
[hide private]
[frames] | no frames]

Source Code for Module rivescript.__main__

 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