-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
56 lines (52 loc) · 2.03 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
API_TOKEN = "" # add your Telegram BOT API into quotes
UA_COMMAND_DESC_LIST = """
/start - перевірка роботи бота
/random - генерація випадкового цілого числа
/eugene - функція пошуку відео
/token - генерація токенів
/time - дата, поточний час та інша інформація стосовно часу
/sticker - відправляє випадковий стікер
/currency - конвертер валют
/weather - погода в заданому населеному пункті
/birthday - обрахунок днів до заданої дати
/taskscheduler - планувальник завдань
/photo - додавання тексту на фото, зміна розмірів фото
/password - генератор випадкових паролів
/keywords - список ключових слів, на які реагує бот
/help - список команд
"""
EN_COMMAND_DESC_LIST = """
/start - check if bot is working
/random - generate random integer number
/eugene - youtube video search
/token - token generation
/time - current date, time and other time info
/sticker - send a random sticker
/currency - currency converter
/weather - show the weather in the entered settlement
/birthday - calculate number of days from current date to another
/taskscheduler - create a list of tasks
/photo - adding text to photo, change photo size
/password - random password generator
/keywords - list of keywords that the bot responds to
/help - command list
"""
COMMAND_LIST = [
"/start",
"/random",
"/eugene",
"/id",
"/time",
"/sticker",
"/currency",
"/weather",
"/birthday",
"/taskscheduler",
"/photo",
"/password",
"/keywords",
"/help",
]
# CURRENCY_URL = 'https://api.privatbank.ua/p24api/pubinfo?json&exchange&coursid=5'
CURRENCY_URL = "https://api.privatbank.ua/p24api/pubinfo?json&exchange&coursid=11"
BITCOIN_URL = "https://api.binance.com/api/v3/ticker/price?symbol=BTCUSDT"