Bringing the app online

This is the interesting part! We are going to establish the connection with the server, send and receive messages, and display meaningful output to users.

But first, let's take a look at the minimal, pure-Python implementation of the chat client, to see what's going on. This is low-level code using a socket to communicate. In practice, using a higher-level abstraction, like Twisted, is almost always advised; but if you're not familiar with the underlying concepts, it may be hard to grasp what happens in your code behind the scenes, which turns debugging into guesswork.

Building a simple Python client

In the following listing, we're reading user input from the console using the built-in readline() function and displaying the ...

Get Kivy Blueprints 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.