hackernews summarize telegram bot的编写踩坑记录
项目地址:https://github.com/bdim404/HackerNews-Summarize-Telegram-Bot 欢迎各位大佬来进行pr,我也将根据本项目继续深入学习。 首先学习到的是python写telegram bot的最基本的库:python-telegram-bot 使用的最基本的用法是: 1 2 3 4 5 #引入我们在编写时telegram的库 from telegram import Update from telegram.ext import ApplicationBuilder, CommandHandler, ContextTypes #编写按钮的函数要在def前加async,在执行返回信息的步骤里面需要在用法前加await 1 2 $ # This installs the latest stable release $ pip install python-telegram-bot --upgrade 这是我学习使用python写bot的第一个最简单的模版,来自https://python-telegram-bot.org/ 1 2 3 4 5 6 7 8 9 from telegram import Update from telegram.ext import ApplicationBuilder, CommandHandler, ContextTypes async def hello(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: await update.message.reply_text(f'Hello {update.effective_user.first_name}') app = ApplicationBuilder()....