imgonline com ua resize WPUbHxRxZ

Introduction to Network Programming in Python

This tutorial will give an introduction to sockets in Python and how to use the socket module to build HTTP servers and clients in Python. It will also cover Tornado, a Python networking library which is ideal for long polling, WebSockets, and other applications that require a long-lived connection to each user.

What Are Sockets?

A socket is a link between two applications that can communicate with one another (either locally on a single machine or remotely between two machines in separate locations).

Basically, sockets act as a communication link between two entities, i.e. a server and a client. A server will give out information being requested by a client. For example, when you visited this page, the browser created a socket and connected to the server.

The socket Module

In order to create a socket, you use the socket.socket() function, and the syntax is as simple as:

Here is the description of the arguments:

  • socket_family: Represents the address (and protocol) family. It can be either AF_UNIX or AF_INET.
  • socket_type: Represents the socket type, and can be either SOCK_STREAM or SOCK_DGRAM.
  • protocol: This is an optional argument, and it usually defaults to 0.

After obtaining your socket object, you can then create a server or client as desired using the methods available in the socket module.

Create a Simple Client

Before we get started, let’s look at the client socket methods available in Python.

  • s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  • s.connect(): Initiates a TCP server connection.

To create a new socket, you first import the socket method of the socket class.

Next, we’ll create a stream (TCP) socket as follows:

The AF_INET argument indicates that you’re requesting an Internet Protocol (IP) socket, specifically IPv4. The second argument is the transport protocol type SOCK_STREAM for TCP sockets. Additionally, you can also create an IPv6 socket by specifying the socket AF_INET6 argument.

Specify the server.

Specify the port we want to communicate with.

Connect the socket to the port where the server is listening.

It’s important to note that the host and port must be a tuple.

Send a data request to the server:

Get the response from the server:

To close a connected socket, you use the close method:

Below is the full code for the Client/Server.

Build a Simple Server

Now let’s take a look at a simple Python server. The following are the socket server methods available in Python.

  • s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  • s.bind(): Binds address (hostname, port number) to socket.
  • s.listen(): Sets up and starts TCP listener.
  • s.accept(): Accepts TCP client connection.

We will follow the following steps: 

  • Create a socket.
  • Bind the socket to a port.
  • Start accepting connections on the socket.

Here is the server program.

The server is now ready for incoming connections.

Now run the client and server programs in separate terminal windows, so they can communicate with each other.

Server Output

Client Output

The Tornado Framework

The Tornado framework is one of the libraries available for network programming in Python. In this section, we will discuss this library and show how to use it to build WebSockets.

Tornado is a Python web framework and asynchronous networking library. Tornado uses the non-blocking network I/O, and hence is capable of scaling to tens of thousands of open connections. This trait makes it ideal for long polling, WebSockets, and other applications that require a long-lived connection to each user.

Let’s create a simple Tornado WebSocket:

In the code above:

  • We define the class ApplicationHandler which serves as the handler for a request and returns a response using the write() method.
  • The main method is the entry for the program.
  • tornado.web.Application creates a base for the web application and takes a collection of handlers, i.e. ApplicationHandler.
  • The Application listens on port 5000, and a client can communicate to this application using the same port.
  • tornado.ioloop.IOLoop.instance().start() creates a nonblocking thread for an application.

If we run the application, we will get the result as shown in the screenshot below.

The results of running our application

Conclusion

By now you must have grasped the basics of socket programming in Python and how you can build a simple server and client. Feel free to experiment by building your own chat client. For more information, visit the official Python docs.

Additionally, don’t hesitate to see what we have available for sale and for study in the Envato Market, and don’t hesitate to ask any questions and provide your valuable feedback using the feed below.

Powered by WPeMatico

Leave a Comment

Scroll to Top