Skip to content

Instantly share code, notes, and snippets.

@iximiuz
iximiuz / serv_async.py
Last active February 13, 2024 11:00
Python Web Servers
# python3
import asyncio
import sys
counter = 0
async def run_server(host, port):
server = await asyncio.start_server(serve_client, host, port)
await server.serve_forever()