socketify.py/examples/hello_world.py

10 wiersze
215 B
Python
Czysty Zwykły widok Historia

2022-05-31 20:53:20 +00:00
from socketify import App
app = App()
2022-11-08 13:07:18 +00:00
app.get("/", lambda res, req: res.end("Hello World!"))
2022-11-16 19:28:46 +00:00
app.listen(
3000,
lambda config: print("Listening on port http://localhost:%d now\n" % config.port),
)
app.run()