Try `aiohttp` if you want HTTP-based stuff. It’s async and handles multiple clients effortlessly.
Example:
```python
from aiohttp import web
async def handle(request):
return web.Response(text="Hello")
app = web.Application()
app.add_routes([web.get('/', handle)])
web.run_app(app)
```
Dead simple.
Example:
```python
from aiohttp import web
async def handle(request):
return web.Response(text="Hello")
app = web.Application()
app.add_routes([web.get('/', handle)])
web.run_app(app)
```
Dead simple.
