admin管理员组文章数量:1344975
I'm using the Telethon library to interact with Telegram's API. Initially, after calling await tel_channel_access(), the client is successfully connected to the server. However, just before running await start_10_messages(), the client is still connected in the main function. But when start_10_messages() from scraper.py is executed, the connection unexpectedly drops.
There are no physical network issues, but I suspect that the connection is being lost due to some issue in the code. I am unsure where the disconnect occurs. I need help understanding why the client disconnects during the execution of start_10_messages() and how to maintain the connection during the entire process.
async def main():
await start_client()
. . .
await tel_channel_access()
print(f"Starting...")
from src.scraper import start_10_messages
await start_10_messages()
if __name__ == '__main__':
asyncio.run(main())
async def start_client():
await client.start(phone=PHONE_NUMBER)
print("Login Success")
async def tel_channel_access():
channels = load_channels()
for channel in channels:
try:
print("
版权声明:本文标题:python - Why does the Telegram client connection drop unexpectedly during execution in Telethon? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人,
转载请联系作者并注明出处:http://www.betaflare.com/web/1743801080a2541325.html,
本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论