原理:通過requests請求網頁xml並解析,運行時獲取文章的時間,不終止循環,所以每次出現新的文章都會發送TG頻道我的博客是Typecho,理論通用。本次環境:Ubuntu首先基本配置為Python3和PIP3:sudo apt-get install -y libxml2-dev libxslt-dev ;pip3 install requests bs4 python-telegram-bot lxml 代碼如下:# -*- coding: utf-8 -*- import requests from bs4 import BeautifulSoup from datetime import datetime import time import telegram # 初始化上一次的更新时间 last_pubDate = None def send_message(content): bot = telegram.Bot(token='') # 機器人Token chat_id = '@Xue_Li_Li_Channel' # 聊天 ID bot