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
30 lines (26 loc) · 763 Bytes
/
Copy path__init__.py
File metadata and controls
30 lines (26 loc) · 763 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
30
# 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 2020, Noah Petherbridge'
__credits__ = [
'Noah Petherbridge',
'dinever',
'snoopyjc'
]
__license__ = 'MIT'
__maintainer__ = 'Noah Petherbridge'
__status__ = 'Production'
__docformat__ = 'plaintext'
__all__ = ['rivescript']
__version__ = '1.15.0'
from .rivescript import RiveScript
from .exceptions import (
RiveScriptError, NoMatchError, NoReplyError, ObjectError,
DeepRecursionError, NoDefaultRandomTopicError, RepliesNotSortedError
)