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.api.v1
3
4
A wrapper for the v1 Talkomatic REST API using dataclasses
5
to represent the data returned by the API.
6
"""
7
8
from
.auth
import
API_AUTH_HEADERS, get_auth_bot_token
9
from
.config
import
ServerConfig
10
from
.emoji_list
import
emoji_list
11
from
.health
import
ServerHealth
12
from
.me
import
UserSession
13
from
.offensive_words
import
WordFilter
14
from
.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
]
talkomatic
api
v1
__init__.py
Generated by
1.13.2