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("