June 2017
Beginner to intermediate
274 pages
6h 49m
English
Here, we have the code for a simple client-server pair of programs (refer to the following code example):

They not only read and write the same few bytes over and over, but they also serve to demonstrate everything needed to communicate across the network.
There will be little information about the client that is mysterious.
Run the following command:
python3 client.py
It runs only a single task that uses asyncio's high-level API to open a connection and then send and receive data through it. The data is just a string of numbers as shown:
Read now
Unlock full access