© Magnus Lie Hetland 2017

Magnus Lie Hetland, Beginning Python, 10.1007/978-1-4842-0028-5_24

24. Project 5: A Virtual Tea Party

Magnus Lie Hetland

(1)Trondheim, Norway

In this project, we’ll do some serious network programming. We’ll write a chat server—a program that lets several people connect via the Internet and chat with each other in real time. There are many ways to create such a beast in Python. A simple and natural approach might be to use the Twisted framework (discussed in Chapter 14), for example, with the LineReceiver class taking center stage. In this chapter, I’ll stick to the asynchronous networking modules of the standard library.

It’s worth noting that at the time of writing, Python seems to be in a sort of interregnum on this front. ...

Get Beginning Python: From Novice to Professional, 3rd Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.