I’ve read that socketserver is easier to use, but for someone who is just learning about sockets, which would be quicker and more beginner-friendly, socket or socketserver? For a very basic client/server setup using stream sockets. (Python)
Share
socketis the low-level interface whichSocketServer(as well as other networking code) is based off of. I’d start out learning it, whether you plan to use it directly or not, just so that you know what you’re working with.Also,
SocketServeris of no use if you’re writing client code. 🙂