#!c:\users\sgoud\pycharmprojects\ensobot\venv\scripts\python.exe """Cathy. Discord chat bot using AIML artificial intelligence Usage: cathy Options: Name of channel to chat in Bot's Discord API token -h --help Show this screen. """ from docopt import docopt from cathy.cathy import ChattyCathy args = docopt(__doc__) print('Channel: ', args['']) print('Token: ', args['']) bot = ChattyCathy(args[''], args['']) bot.run()