Loading...
CONCEPT

TCP Servers in Python

Learn how to write TCP servers using Python's socket module

avatar
glokta1
Concept Author
3 min reading time

TCP is a widely used network protocol. It's the underlying protocol for HTTP, SSH and many other protocols that you're probably familiar with.

In this concept we'll learn how to write a TCP server in Python using the socket module.

Not familiar with TCP? Try the "TCP: An Overview" concept first.