Skip to main content

Python Networking Programming

Python Networking Programming
Python plays an important role in network programming. The standard library of Python has wide support for network protocols, encoding and decoding of data and other networking concepts and it is simpler to write network programs in Python than that of C++.
Here, we will learn about the essence of network programming with respect to Python. But for this programmers must need to have basic knowledge of:
  • Low-Level Programming using sockets
  • Data encoding
  • HTTP and web-programming
  • High-Level client modules
  • Basic networking terms and their concepts etc.

Python Network Services

There are two levels of network service access in Python. These are:
  • Low-Level Access
  • High-Level Access
In the first case, programmers can use and access the basic socket support for operating system using Python’s libraries and programmers can implement both connection-less and connection-oriented protocols for programming.
Application level network protocols can also be accessed using high-level access provided by Python libraries. These protocols are HTTP, FTP etc.

Defining Socket

Socket is the end-point in a flow of communication between two programs or communication channels operating over a network. They are created using a set of programming request called socket API (Application Programming Interface). Python’s socket library offers classes for handling common transports as generic interface.
Sockets use protocols for determining the connection type for port-to-port communication between client and server machines. The protocols are used for:
  • Domain Name Servers (DNS)
  • IP addressing
  • E-mail
  • FTP (File Transfer Protocol) etc…

Socket Program

Python has socket method that let programmers’ set-up different types of socket virtually. The syntax for socket method is:
Syntax:
g = socket.socket (socket_family, type_of_socket, protocol=value)
For example, if we want to establish a TCP socket, we can write the following code snippet:
Example:
#!/usr/bin/python

# imports everything from 'socket'

from socket import *

# use socket.socket() - function

tcp1
=socket.socket(socket.AF_INET, socket.SOCK_STREAM)
Here’s another example to establish UDP socket. The code is:
udp1=socket.socket (socket.AF_INET, socket.SOCK_DGRAM)
After you defined the socket, you can you can use several methods to manage the connections. Some of the important server socket methods are:
  • listen(): is used to establish and start TCP listener.
  • bind(): is used to bind address (host-name, port number) to socket.
  • accept(): is used to TCP client connection until the connection arrives.
  • connect(): is used to initiate TCP server connection.
  • send(): is used to send TCP messages.
  • recv(): is used to receive TCP messages.
  • sendto(): is used to send UDP messages
  • close(): is used to close a socket.

A Simple Network Program Using Python

Example:
#!/usr/bin/python

import socket
T_PORT
= 60
TCP_IP
= '127.0.0.1'
BUF_SIZE
= 30
# create a socket object name 'k'
k
= socket.socket (socket.AF_INET, socket.SOCK_STREAM)
k
.bind((TCP_IP, T_PORT))
k
.listen(1)
con
, addr = k.accept()
print 'Connection Address is: ' , addr
while True :
data
= con.recv(BUF_SIZE)
if not data:
break
print "Received data", data
con
.send(data)
con
.close()
Save the file with filename – tcpserver.py
This will open a web server at port 60. In the above program, everything you write in the client goes at the server.
Now a simple Python client script:
#!/usr/bin/python

import socket

T_PORT
= 5006

TCP_IP
= '127.0.0.1'

BUF_SIZE
= 1024

MSG
= "Hello karl"

# create a socket object name 'k'

k
= socket.socket (socket.AF_INET, socket.SOCK_STREAM)

k
.connect((TCP_IP, T_PORT))

k
.send(MSG)

data
= k.recv(BUF_SIZE)

k
.close
Sending messages back and forth using different basic protocols is simple and easy. This shows that programming takes a major role n client-server architecture where the client makes data request to a server and the server replies those m

Comments

For Programs Click Here

Popular posts from this blog

Syllabus

Syllabus  C Programming Tutorials C Tutorial C Introduction History of C Programming Language C Installation C Program Structure C Input and Output (I/O) C Format Specifiers Declaration & Assignments C Tokens C Identifiers C Keywords C Constants C Operators C Data Types C Variables C Preprocessors C Type Casting C Custom Header File Flow Control C Decision Making C if Statements C if-else Statements C Nested if-else Statements C else-if Statements C goto Statement C switch Statements C Loops C while loops C do while loops C for loops Functions C Functions C Function Arguments C Library Functions C Variable Scope Arrays & Strings C Arrays C Strings Pointers C Pointers C Dynamic Memory Allocation Structure & Union C Structures C Unions File I/O C File Handling C fopen C fclose C getc C putc C getw C putw C fprintf C fscanf C fgets C fputs C feof                                     ...

Syllabus

Python Tutorials Python Tutorial Python Overview Python Installation Basics of Python Programming Python Operators Python Keywords Python Numbers Python Strings Python Data Types Python Variables Python Lists Python Tuples Python Date and Time Python Decision Making Python Loops Python File Handling Python Dictionaries Python Functions Python Modules Python Exceptions Handling Python Object Oriented Inheritance in Python Python Regular Expressions Python Networking Programming Python Multithreaded Programming Python CGI Programming Python Database Connection Python Metaprogramming Python Data Processing And Encoding Python GUI Programming

Java Method Overriding

Java Method Overriding Declaring a method in the subclass which already exists there in the parent class is known as method overriding. When a class is inheriting a method from a superclass of its own, then there is an option of overriding the method provided it is not declared as final. The advantage of using overriding is the ability to classify a behavior that’s specific to the child class and the child class can implement a parent class method based on its necessity. There are certain rules that a programmer should follow in order to implement overriding. These are: In Java, a method can only be written in the child class and not in same class. Argument list should be exactly the same as that of the overridden method of that class. Instance methods can also be overridden if they are inherited by the child class. A constructor cannot be overridden. Final – declared methods cannot be overridden. Any method that is static cannot be used to override. The return type must have to be the...