py async sleep and then do code example
Example 1: python delay
>>> import time
>>> time.sleep(3) # Sleep for 3 seconds
Example 2: async sleep python
await asyncio.sleep(1)
>>> import time
>>> time.sleep(3) # Sleep for 3 seconds
await asyncio.sleep(1)