Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 507 Bytes

README.md

File metadata and controls

5 lines (3 loc) · 507 Bytes

Echo_Server_Client

Socket programming using python

The most common type of socket applications are client-server applications, where one side acts as the server and waits for connections from clients. This is the type of application that you’ll be creating in this tutorial. More specifically, you’ll focus on the socket API for Internet sockets, sometimes called Berkeley or BSD sockets. There are also Unix domain sockets, which can only be used to communicate between processes on the same host.