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