You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
271 B
14 lines
271 B
7 years ago
|
"""
|
||
|
ChatterBot is a machine learning, conversational dialog engine.
|
||
|
"""
|
||
|
from .chatterbot import ChatBot
|
||
|
|
||
|
__version__ = '0.8.4'
|
||
|
__author__ = 'Gunther Cox'
|
||
|
__email__ = 'gunthercx@gmail.com'
|
||
|
__url__ = 'https://github.com/gunthercox/ChatterBot'
|
||
|
|
||
|
__all__ = (
|
||
|
'ChatBot',
|
||
|
)
|