asyncio timeout code example
Example 1: await set timeout
await new Promise(resolve => setTimeout(resolve, 1000));
Example 2: asyncio sleep
#will sleep the current corutien for set numner of seconds
import asyncio
await asyncio.sleep(1)
await new Promise(resolve => setTimeout(resolve, 1000));
#will sleep the current corutien for set numner of seconds
import asyncio
await asyncio.sleep(1)