Skip to content

Instantly share code, notes, and snippets.

@fatiiates
Created December 30, 2020 21:52
Show Gist options
  • Save fatiiates/61fcc5238d36e9dcec4b314f34f7ee84 to your computer and use it in GitHub Desktop.
Save fatiiates/61fcc5238d36e9dcec4b314f34f7ee84 to your computer and use it in GitHub Desktop.
Medium Telegram Chatbot - Start Method
def start(update, context):
message = "Bot başlatıldı.\n"
message += "Daha fazla bilgi için /help komutunu gönderin."
# Bot gönderilen mesaja özel yanıt döndürüyor
update.message.reply_text(message)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment