A lightweight Python package for creating simple servers and clients with sockets. Version 1.0.0 is the initial release. No active maintenance or release cadence observed.
pip install socketsNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Create a simple echo server and client using sockets library.
For production use, consider asyncio's streams or the standard library `socket` module directly.
Use threading: `threading.Thread(target=server.serve, args=(host, port, handler)).start()`
No dependency data recorded yet.