Untitled

人生如逆旅,我亦是行人。 --苏轼<<临江仙•送钱穆父>>Life is like a journey against the current,and I,too,am just atraveler. --Su shi,To Qian Mufu(from Linjiangxain) ...

Markdown introduction

The so-called bottomless abyss - if you go down it,you may still find a journey of ten thousand miles ahead. -- Mu Xin,On Siple Travel Markdown introductionMarkdown is a lightweight markup lang...

Link

LinkMarkdown lnsert link [text](url) example:This is my blog Insert photo![Picture description,you can not write it](link of pictures) listOrdered listAn ordered list uses numbers to add . sig...

Python 基础入门

Python 基础入门欢迎来到 Python 的世界!这份文档会帮助你从零开始理解项目中的代码。 写在前面:编程是什么?编程就是给计算机下命令,让它帮你做事。 就像你告诉朋友: "帮我买一杯咖啡,要热的,加糖" 编程就是用代码告诉计算机: "帮我发送一条消息,发给 @BotFather,内容是 /start" 一、Python 是什么?Pytho...

config.py 讲解

config.py 讲解这是项目中最简单的文件,用来存储配置信息。 原始代码# Telegram API 凭证(从 https://my.telegram.org 获取) API_ID = 31630651 API_HASH = "be85c71fb7ec7ffbed31328bb99f683f" PHONE = "+18149001586" # 如果有...

login.py 讲解

login.py 讲解这个文件用于首次登录 Telegram,获取 Session String。 原始代码import asyncio from telethon import TelegramClient from telethon.errors import SessionPasswordNeededError from telethon.sessions import StringSes...

bot_sender.py 讲解

bot_sender.py 讲解这个文件包含核心功能类 TelegramBotSender,负责发送消息。 原始代码import asyncio from typing import Dict, Any, List, Union from telethon import TelegramClient from telethon.sessions import StringSession fro...