forked from aichaos/rivescript-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
29 lines (25 loc) · 747 Bytes
/
Copy path__init__.py
File metadata and controls
29 lines (25 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# RiveScript-Python
#
# This code is released under the MIT License.
# See the "LICENSE" file for more information.
#
# https://www.rivescript.com/
# Python 3 compat
from __future__ import print_function, unicode_literals
__author__ = 'Noah Petherbridge'
__copyright__ = 'Copyright 2015, Noah Petherbridge'
__credits__ = [
'Noah Petherbridge',
'dinever'
]
__license__ = 'MIT'
__maintainer__ = 'Noah Petherbridge'
__status__ = 'Production'
__docformat__ = 'plaintext'
__all__ = ['rivescript']
__version__ = '1.14.4'
from .rivescript import RiveScript
from .exceptions import (
RiveScriptError, NoMatchError, NoReplyError, ObjectError,
DeepRecursionError, NoDefaultRandomTopicError, RepliesNotSortedError
)