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
emoji_list.py
Go to the documentation of this file.
1
"""
2
A dictionary of all the emojis available on the Talkomatic server.
3
4
The keys are the emoji names, and the values are the image URLs.
5
"""
6
7
from
requests
import
get
as
requests_get
8
9
response = requests_get(
"https://classic.talkomatic.co/js/emojiList.json"
)
10
if
response.status_code != 200:
raise
RuntimeError(
"The talkomatic.co server is down."
)
11
emoji_list: dict[str, str] = response.json()
12
13
__all__ = [
"emoji_list"
]
talkomatic
api
v1
emoji_list.py
Generated by
1.13.2