Python ile Telegram botu yapmak Discord botundan bile daha kolay! python-telegram-bot kutuphanesi ile baslayalim.
Kurulum
# (c) CodeMareFi - codemarefi.com.tr
pip install python-telegram-bot
Temel Bot
# (c) CodeMareFi - codemarefi.com.tr
from telegram import Update
from telegram.ext import Application, CommandHandler, MessageHandler, filters
async def start(update: Update, context):
await update.message.reply_text(
'Merhaba! Ben CodeMareFi Telegram Botuyum!'
)
async def echo(update: Update, context):
await update.message.reply_text(update.message.text)
app = Application.builder().token('BOT_TOKEN_BURAYA').build()
app.add_handler(CommandHandler('start', start))
app.add_handler(MessageHandler(filters.TEXT, echo))
app.run_polling()
© CodeMareFi
Bu icerik codemarefi.com.tr ye aittir.