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.api.v1
3
4A wrapper for the v1 Talkomatic REST API using dataclasses
5to represent the data returned by the API.
6"""
7
8from .auth import API_AUTH_HEADERS, get_auth_bot_token
9from .config import ServerConfig
10from .emoji_list import emoji_list
11from .health import ServerHealth
12from .me import UserSession
13from .offensive_words import WordFilter
14from .rooms import get_rooms, get_room, can_join_room, RoomJoinStatus, create_room
15
16__all__ = [
17 "RoomJoinStatus",
18 "ServerConfig",
19 "ServerHealth",
20 "UserSession",
21 "WordFilter",
22 "can_join_room",
23 "create_room",
24 "emoji_list",
25 "get_auth_bot_token",
26 "get_room",
27 "get_rooms",
28]