()
| 46 | |
| 47 | |
| 48 | async def clients(): |
| 49 | # Start one more client than necessary because we will ignore |
| 50 | # non-representative results from the first connection. |
| 51 | await asyncio.gather(*[client(num) for num in range(CLIENTS + 1)]) |
| 52 | |
| 53 | |
| 54 | asyncio.run(clients()) |