September 2016
Beginner to intermediate
593 pages
12h 12m
English
In the previous section, we went through the basics of creating a socket server and client in Python. In this section, we will write a chat application in Python that is powered by Python sockets.
The chat application we are going to make will be a common chat room rather than a peer-to-peer chat. So this means that multiple chat users can connect to the chat server and exchange messages. Every message is broadcast to every connected chat user.
The chat server performs the following tasks:
The following is the code for the chat server:
import socket, select #Function ...
Read now
Unlock full access