最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

python - Why does the Telegram client connection drop unexpectedly during execution in Telethon? - Stack Overflow

programmeradmin0浏览0评论

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("
发布评论

评论列表(0)

  1. 暂无评论