socketserver — Creating Network Servers — PyMOTW 3
Originally posted
· 1 min read
The socketserver module is a framework for creating network servers. It defines classes for handling synchronous network requests (the server request handler blocks until the request is completed) over TCP, UDP, UNIX streams, and UNIX datagrams. It also provides mix-in classes for easily converting servers to use a separate thread or process for each request.
This post is part of the Python Module of the Week series for Python 3. See PyMOTW.com for more articles from the series.