Network Programming
Contents: What is Client/Server Architecture? Sockets: Communication Endpoints Networking Programming in Python The SocketServer Module Twisted Framework Related Modules Client Server Architecture: It is simple., the Server is a piece of hardware or software provides a "service" that is needed by one or more clients (user of the service). Its purpose is to wait for the client's request and respond to those clients and then wait for more requests. Clients on the other hand, contacts server for a particular request, send over any necessary data, and then wait foe the server ti reply, either completing the request or indicating cause of failure. The common notion o...