mirror of https://github.com/sgoudham/Enso-Bot.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
517 B
Plaintext
24 lines
517 B
Plaintext
#!c:\users\sgoud\pycharmprojects\ensobot\venv\scripts\python.exe
|
|
"""Cathy.
|
|
|
|
Discord chat bot using AIML artificial intelligence
|
|
|
|
Usage:
|
|
cathy <channel> <token>
|
|
|
|
Options:
|
|
<channel> Name of channel to chat in
|
|
<token> 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['<channel>'])
|
|
print('Token: ', args['<token>'])
|
|
|
|
bot = ChattyCathy(args['<channel>'], args['<token>'])
|
|
bot.run() |