Sarvesh Ghildiyaltgbots-by-ghildiyalsarv.hashnode.dev·Jun 15, 2024Intro to Telegram BotsWelcome to the World of Automation :) Well, hello mate, you must have used Telegram once or twice in you lifespan either for getting links to some cute sexy web serieses or either for some education material. Ever wondered with the term Bot (Robot in...10 likes·27 readstelegram
老房东blog.hdcola.org·Aug 15, 2022Pyrogram Telegram Bot小纸条(三)与Telegram Bot打交道的一个最多的方式就是使用命令,在官方的文档里命有专门的介绍。默认的情况下命令是由/开头的字符串。如果在对话中有多个Bot,你可以使用/command@botname来向指定的Bot发出问题。在继续之前,你应该已经读完小纸条一和小纸条二,并建立好了你的启动bot.py文件,并使用plugins来加载我们的插件。接下来,我们大多数的都是一个个plugin的方式来开发。 处理Bot Commands 如果我们要接收一个Command,需要做的事有三步: 使用装饰器标识...1 like·592 readsPython小纸条Python
老房东blog.hdcola.org·Aug 6, 2022Pyrogram Telegram Bot小纸条(一)由于我希望使用MTProto协议来完成我以后的Telegram Bot,同时习惯了async的异步的一些便捷,所以我开始将我的基于python-telegram-bot的一些Bot改为Pyrogram。如果你想对整体的Telegram Bot以及相关的信息有一个了解,你可以去我的另一篇Blog了解相关的信息。接下来我会整理一下Pyrogram书写一个Telegram Bot所需要完成的事宜。 准备认证 与直接使用Bot API的HTTPS接口服务不同,如果你想要使用MTProto协议来调用Bot...2 likes·1.3K readsPython小纸条Python