Join Nostr
2024-12-27 23:33:14 UTC
in reply to

npub1jh…9eag0 on Nostr: Bonus: Multi-threaded HTTP server from http.server import HTTPServer from ...

Bonus: Multi-threaded HTTP server

from http.server import HTTPServer
from socketserver import ThreadingMixIn

class ThreadingServer(ThreadingMixIn, HTTPServer):
pass

Everything else is exactly the same.