-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreply_messages.py
36 lines (22 loc) · 1.54 KB
/
reply_messages.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
start_message = '''*What can this bot do?*
~APPNAME~ is a great source of old and new stats and graphs relating to the Covid19 pandemic.
All past data used to create graphs is sourced from the [European-CDC](https://www.ecdc.europa.eu/en) website.
Whereas data used to return today's numbers is sourced from the [Wordlometer](https://www.worldometers.info/coronavirus/) website.
For a list of avaliable commands and features, issue the commane /help.
For more information about this bot, visit the [GitHub](https://github.com/ItsWajdy/covid19-stats-telegram-bot) repository.'''
help_message = """~APPNAME~ can help you get information about the Covid19 pandemic regarding the following:
- Total cases
- New cases
- Total deaths
- New deaths
Any of the previous insights can be asked about for a certain country or for the entire world.
Any of the previous insights can be asked about for current day or they can be drawn as a function of time (starting with March 24th).
Send a *regular* message starting with the insight name (as mentioned above), followed by country name (or the word "worldwide"), follwed by "today" for today's figures or "graph" for a complete graph.
A sample message might look like:
new cases china today"""
error_parsing_message = '''*Message not understood*
Check your spelling or type /help for a list of possible commands and message.'''
error_message = '''*Error! Could not get wanted information*
*Please report this error*'''
today_response_message = '''There were *{}* *{}* so far today {}'''
standby_message = '''Getting data...'''