|
- Socket Programming HOWTO — Python 3. 13. 5 documentation
Socket libraries have calls for converting 16 and 32 bit integers - ntohl, htonl, ntohs, htons where “n” means network and “h” means host, “s” means short and “l” means long
- socketserver — A framework for network servers - Python
socket ¶ The socket object on which the server will listen for incoming requests The server classes support the following class variables: allow_reuse_address ¶ Whether the server will allow the reuse of an address This defaults to False, and can be set in subclasses to change the policy request_queue_size ¶ The size of the request queue
- ssl — TLS SSL wrapper for socket objects — Python 3. 13. 5 documentation
This module provides a class, ssl SSLSocket, which is derived from the socket socket type, and provides a socket-like wrapper that also encrypts and decrypts the data going over the socket with SSL
- asyncore — Asynchronous socket handler — Python 3. 11. 13 documentation
Source code: Lib asyncore py This module provides the basic infrastructure for writing asynchronous socket service clients and servers Availability: not Emscripten, not WASI
- Transports and Protocols — Python 3. 13. 5 documentation
A different way of saying the same thing: a transport is an abstraction for a socket (or similar I O endpoint) while a protocol is an abstraction for an application, from the transport’s point of view
- The Python Standard Library — Python 3. 13. 5 documentation
The Python Standard Library ¶ While The Python Language Reference describes the exact syntax and semantics of the Python language, this library reference manual describes the standard library that is distributed with Python
- asyncio — Asynchronous I O — Python 3. 13. 5 documentation
asyncio is a library to write concurrent code using the async await syntax asyncio is used as a foundation for multiple Python asynchronous frameworks that provide high-performance network and web-servers, database connection libraries, distributed task queues, etc
- Networking and Interprocess Communication - Python
Networking and Interprocess Communication ¶ The modules described in this chapter provide mechanisms for networking and inter-processes communication Some modules only work for two processes that are on the same machine, e g signal and mmap Other modules support networking protocols that two or more processes can use to communicate across machines The list of modules described in this
|
|
|