Skip to content

Instantly share code, notes, and snippets.

@fatiiates
Last active January 31, 2021 20:30
Show Gist options
  • Save fatiiates/5671650dd1d1e59a3c38588fd0f741b6 to your computer and use it in GitHub Desktop.
Save fatiiates/5671650dd1d1e59a3c38588fd0f741b6 to your computer and use it in GitHub Desktop.
Medium Telegram Chatbot - Help Method
def help(update, context):
help_message = "Mevcut komutları aşağıdan görebilirsin.\n\n"
help_message += "/hakkinda - Chatbot hakkındaki bilgileri verir.\n"
help_message += "/yardim - Tüm komutları listeler.\n"
help_message += "/start - Chatbotu başlatır.\n"
# Bot gönderilen mesaja özel yanıt döndürüyor
update.message.reply_text(help_message)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment