如何使用 telethon 在 telegram 中搜索群组和频道?

Alo*_*hor 7 python telegram telethon

我使用telethon使用 python 脚本向电报发送消息。
我在电视马拉松中没有找到任何东西来搜索我喜欢用来在电报应用程序上搜索的群组和频道。请看图片。我如何使用电视马拉松获得这样的列表?

在此输入图像描述

fqu*_*nto 3

使用您的秘密创建文件:config.ini

[Telegram]
# no need for quotes

# you can get telegram development credentials in telegram API Development Tools
api_id = 1234
api_hash = 1234

# use full phone number including + and country code
phone = +4411111111111
username = session_user
Run Code Online (Sandbox Code Playgroud)

一种解决方案是这样的,do_search.py

[Telegram]
# no need for quotes

# you can get telegram development credentials in telegram API Development Tools
api_id = 1234
api_hash = 1234

# use full phone number including + and country code
phone = +4411111111111
username = session_user
Run Code Online (Sandbox Code Playgroud)

并且不要忘记始终感谢@lonami创建了这个很棒的Telethon库:)

  • 问题不在于如何使用 telethon 连接到 telegram API。您唯一应该提到的部分是“contact.search”选项。如此长的答案和不相关的信息可能会误导很多人。 (2认同)