#!/usr/bin/env python
"""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.
  --version     Show version.
"""

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()