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
"""
2
talkomatic.dataclasses
3
4
A module using classes to represent object like users and rooms in an
5
intuitive and safe way.
6
"""
7
8
from
.rate_limits
import
RateLimits, DISABLE_RATE_LIMITS
9
from
.room
import
Room, RoomType, RoomLayoutType
10
from
.user
import
User
11
12
__all__ = [
"RateLimits"
,
"DISABLE_RATE_LIMITS"
,
"Room"
,
"RoomType"
,
"RoomLayoutType"
,
"User"
]
talkomatic
dataclasses
__init__.py
Generated by
1.13.2