-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.py
38 lines (33 loc) · 978 Bytes
/
help.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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from parse_response import parse_response
def commands():
return ''.join(
'/track1 \n'
'/track2 \n'
'/agenda \n'
'/ponencias \n'
'/ponentes \n'
'/ayuda \n'
'/command \n'
'/commands \n'
)
def help_action(req: object = None) -> object:
"""help action
"""
command_list = commands()
result = {
"fulfillmentMessages": [
{
"payload": {
"telegram": {
"text": f"""Estos son algunos de los comandos que puedes utilizar. \n\n {command_list}\n\n Además, puedes hablar con el bot sin necesidad de solo utilizar comandos. Ej: ponencias del pyday""",
"parse_mode": "Markdown"
}
},
"platform": "TELEGRAM",
},
],
}
response = parse_response(result)
return response