Simple webserver

Dieter Maurer dieter at handshake.de
Sun Oct 22 13:35:13 EDT 2023


Janis Papanagnou wrote at 2023-10-21 04:03 +0200:
> ...
>I'd like to ask; where do you see the specific risks with Python
>(as language per se) and it's (web-socket-)libraries here?

The web server in Python's runtime library is fairly simple,
focusing only on the HTTP requirements.

You might want additional things for an HTTP server
exposed on the internet which should potentially handle high trafic:
e.g.

 * detection of and (partial) protection against denial of service attacks,
 * load balancing,
 * virtual hosting
 * proxing
 * URL rewriting
 * high throughput, low latency

Depending on your requirements, other web servers might be preferable.


More information about the Python-list mailing list