1
0
mirror of https://gitlab.com/MisterBiggs/multi-bot-tutorial.git synced 2025-06-15 22:56:45 +00:00

operational version of telegram bot

This commit is contained in:
Anson 2019-07-11 21:54:43 -07:00
parent 52c2a99f3a
commit fe4ffba031
2 changed files with 8 additions and 6 deletions

View File

@ -11,7 +11,7 @@ def nextLaunch():
"rocket": "Proton-M/Blok DM-03 ",
"mission": " Spektr-RG",
"date": "July 12, 2019 12:31:00 UTC",
"countdown": "The launch is in 14 hours and 48 minutes.",
"countdown": "14 hours and 48 minutes.",
"video": "https://www.youtube.com/watch?v=Dy1nkGghEVk",
}
"""
@ -29,7 +29,7 @@ def nextLaunch():
countdown = str(
datetime.strptime(date, "%B %d, %Y %H:%M:%S %Z") - datetime.today()
).split(":")
countdown = f"The launch is in {countdown[0]} hours and {countdown[1]} minutes."
countdown = f"{countdown[0]} hours and {countdown[1]} minutes."
else:
print("error")

View File

@ -24,11 +24,13 @@ def start(bot, update):
update.message.reply_text("I am started and ready to go!")
def nextRocketLaunch():
nextLaunch()
def nextRocketLaunch(bot, update):
launch = nextLaunch()
message = f"The **{launch['mission']}** is in {launch['countdown']}\n\n"
message += f"The Mission is using the {launch['rocket']} and you can watch the mission live [here]({launch['video']})"
update.message.reply_text(text=message, parse_mode=telegram.ParseMode.MARKDOWN)
def error(bot, update, error):
@ -46,7 +48,7 @@ def main():
# on different commands - answer in Telegram
dp.add_handler(CommandHandler("start", start))
dp.add_handler(CommandHandler("Launch", nextRocketLaunch))
dp.add_handler(CommandHandler("launch", nextRocketLaunch))
# log all errors
dp.add_error_handler(error)