socketify.py/bench/robyn_plaintext.py

15 wiersze
226 B
Python
Czysty Zwykły widok Historia

2022-11-10 21:04:01 +00:00
from robyn import Robyn
app = Robyn(__file__)
2022-11-16 19:28:46 +00:00
2022-11-10 21:04:01 +00:00
@app.get("/")
async def h(request):
return "Hello, world!"
2022-11-16 19:28:46 +00:00
2022-11-10 21:04:01 +00:00
app.start(port=8000)
# python3 ./robyn_plaintext.py --processes 4 --log-level CRITICAL
2022-11-16 19:28:46 +00:00
# pypy3 did not compile