talkomatic.py 0.1.2
An easy-to-use Python versatile wrapper for the Talkomatic Bot interface ensuring best practices for making bots, and handling the REST API.
 
Loading...
Searching...
No Matches
__init__.py
Go to the documentation of this file.
1"""
2talkomatic.py
3
4An easy-to-use Python versatile wrapper for the Talkomatic Bot interface ensuring best practices for making bots, and handling the REST API.
5"""
6
7
8from .bot import Bot
9from .commands import *
10from .dataclasses import *
11
12from talkomatic import api
13import talkomatic.bot
16
17__all__ = [
18 "api",
19 "bot",
20 "dataclasses",
21 "Bot",
22 "Room",
23 "RoomType",
24 "RoomLayoutType",
25 "User",
26 "RateLimits",
27 "DISABLE_RATE_LIMITS"
28]
29__author__ = "BatteRaquette581 & the talkomatic.py GitHub contributors"
30__license__ = "MIT"
31__version__ = "0.1.1"
32__title__ = "talkomatic.py"