python network programming tutorial
关于网络编程以及socket 等一些概念和函数介绍就不再重复了,这里示例性用python 编写客户端和服务器端。
一、最简单的客户端流程:
1. Create a socket
2. Connect to remote server
3. Send some data
4. Receive a reply
|
1 |
#Socket client example in python
import socket #for sockets import sys #for exit import struct import time #create an INET, STREAMing socket try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) except socket.error: 'Failed to create socket' sys.exit() 'Socket Created' host = 'www.google.com'; port = ; try: remote_ip = socket.gethostbyname( host ) except socket.gaierror: #could not resolve 'Hostname could not be resolved. Exiting' sys.exit() #Connect to remote server s.connect((remote_ip , port)) 'Socket Connected to ' + host + ' on ip ' + remote_ip #Send some data to remote server message = "GET / HTTP/1.1\r\n\r\n" try : #Set the whole string s.sendall(message) except socket.error: #Send failed 'Send failed' sys.exit() 'Message send successfully' def recv_timeout(the_socket,timeout= ): #make socket non blocking the_socket.setblocking( ) #total data partwise in an array total_data=[]; data= ''; #beginning time begin=time.time() while : #if you got some data, then break after timeout if total_data and time.time()-begin > timeout: break #if you got no data at all, wait a little longer, twice the timeout elif time.time()-begin > timeout* : break #recv something try: data = the_socket.recv( ) if data: total_data. append(data) #change the beginning time for measurement begin=time.time() else: #sleep for sometime to indicate a gap time.sleep( . ) except: pass #join all parts to make final string return ''. join(total_data) #get reply and print print recv_timeout(s) #Close the socket s. close() |
需要注意的是也许http 响应数据比较大,要经过多次才能完整接收,设置socket 非阻塞,设定timeout,最后join 数据;因为我们并不知道具体数据到底多大,故不能这样使用 data. s.recv(4096 , socket.MSG_WAITALL); 如果最后一次来的数据不够4096,那么将一直阻塞。输出如下:
二、最简单的服务器端流程:
1. Open a socket
2. Bind to a address(and port).
3. Listen for incoming connections.
4. Accept connections
5. Read/Send
|
1 |
import socket
import sys HOST = '' # Symbolic name meaning all available interfaces PORT = # Arbitrary non-privileged port s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 'Socket created' try: s.bind((HOST, PORT)) except socket.error , msg: 'Bind failed. Error Code : ' + str(msg[ ]) + ' Message ' + msg[ ] sys.exit() 'Socket bind complete' s.listen( ) 'Socket now listening' #now keep talking with the client while : #wait to accept a connection - blocking call conn, addr = s.accept() 'Connected with ' + addr[ ] + ':' + str(addr[ ]) data = conn.recv( ) reply = 'OK...' + data if not data: break conn.sendall(reply) conn. close() s. close() |
三、上述程序的缺点是每个连接上来就回应一次就不再搭理了,显然不可取,用多线程改进如下:
|
1 |
import socket
import sys from thread import * HOST = '' # Symbolic name meaning all available interfaces PORT = # Arbitrary non-privileged port s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 'Socket created' #Bind socket to local host and port try: s.bind((HOST, PORT)) except socket.error , msg: 'Bind failed. Error Code : ' + str(msg[ ]) + ' Message ' + msg[ ] sys.exit() 'Socket bind complete' #Start listening on socket s.listen( ) 'Socket now listening' #Function for handling connections. This will be used to create threads def clientthread(conn): #Sending message to connected client conn.send( 'Welcome to the server. Type something and hit enter\n') #send only takes string #infinite loop so that function do not terminate and thread do not end. while True: #Receiving from client data = conn.recv( ) reply = 'OK...' + data if not data: break conn.sendall(reply) #came out of loop conn. close() #now keep talking with the client while : #wait to accept a connection - blocking call conn, addr = s.accept() 'Connected with ' + addr[ ] + ':' + str(addr[ ]) #start new thread takes 1st argument as a function name to be run, second is the tuple of arguments to the function. start_new_thread(clientthread ,(conn,)) s. close() |
即每accept 返回一个连接,就创建一个线程对其服务。
启动server,然后开两个窗口telnet 上去,如下:
四、接下来,我们再用select 来实现,函数原型如下:
read_sockets,write_sockets,error_sockets = select(read_fds , write_fds, except_fds [, timeout]);
|
1 |
#Socket server in python using select function
import socket, select #Function to broadcast chat messages to all connected clients if __name__ == CONNECTION_LIST = [] server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) #Add server socket to the list of readable connections print while for sock server_socket. |
五、最后使用poll 来实现,如下:
launcelot.py
|
1 |
#!/usr/bin/env python
#coding=utf-8 #Constants and routines for supporting a certain network conversation. import sys, socket PORT = qa = (( |
poll_server.py
|
1 |
# An event-driven approach to serving several clients with poll().
import launcelot import select listen_sock = launcelot.setup() poll = select.poll() while #Send out pieces of each reply until they are all sent |
客户端需要发送launcelot.qa 其中一个问题,然后server 索引到答案发回给客户端。
参考:
《Foundations of Python Network Programming》
python network programming tutorial的更多相关文章
- Python socket – network programming tutorial
原文:https://www.binarytides.com/python-socket-programming-tutorial/ --------------------------------- ...
- Python Network Programming
@1: 同步网络编程(也就是阻塞方式) 同步网络编程一次只能连接一个客户端. Server端: import socket def debugPrint(name, value): print(&qu ...
- Neural Network Programming - Deep Learning with PyTorch with deeplizard.
PyTorch Prerequisites - Syllabus for Neural Network Programming Series PyTorch先决条件 - 神经网络编程系列教学大纲 每个 ...
- [C1W2] Neural Networks and Deep Learning - Basics of Neural Network programming
第二周:神经网络的编程基础(Basics of Neural Network programming) 二分类(Binary Classification) 这周我们将学习神经网络的基础知识,其中需要 ...
- 吴恩达《深度学习》-第一门课 (Neural Networks and Deep Learning)-第二周:(Basics of Neural Network programming)-课程笔记
第二周:神经网络的编程基础 (Basics of Neural Network programming) 2.1.二分类(Binary Classification) 二分类问题的目标就是习得一个分类 ...
- Professional iOS Network Programming Connecting the Enterprise to the iPhone and iPad
Book Description Learn to develop iPhone and iPad applications for networked enterprise environments ...
- SSL Programming Tutorial
SSL Programming Tutorial � Table of Contents [ � Index This section demonstrates the implement ...
- Fast portable non-blocking network programming with Libevent
Fast portable non-blocking network programming with Libevent Fast portable non-blocking network prog ...
- Andrew's Blog / 《Network Programming with Go》学习笔记
第一章: Architecture(体系结构) Protocol Layers(协议层) ISO OSI Protocol 每层的功能: 网络层提供交换及路由技术 传输层提供了终端系统之间的数据透明传 ...
随机推荐
- windowIsTranlucent 属性
项目中踩的大坑. 先埋. int alwaysFinish = 0; if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERS ...
- 关于——GCD
GCD全称是Grand Central Dispatch,可译为“牛逼的中枢调度器”,纯C语言提供了强大的函数. GCD中2个核心概念 任务:执行什么操作. 队列:用来存放任务.(说白点,任务只有 ...
- java测试1
发大水 package com.java1234.activiti.variable; import java.util.Date; import java.util.HashMap; import ...
- 修路方案(nyoj)
算法:次小生成树 描述 南将军率领着许多部队,它们分别驻扎在N个不同的城市里,这些城市分别编号1~N,由于交通不太便利,南将军准备修路. 现在已经知道哪些城市之间可以修路,如果修路,花费是多少. 现在 ...
- 你好,C++(35)类是如何藏私房钱的?6.2.4 拷贝构造函数
6.2.6 类成员的访问控制 类成员包括类的成员变量和成员函数,它们分别用来描述类的属性和行为.而类成员的访问控制决定了哪些成员是公开的,可以被外界访问,也可以被自身访问:哪些成员是私有的,只能在类 ...
- 【USACO 3.2.3】纺车的轮子
[描述] 一架纺车有五个纺轮,这五个不透明的轮子边缘上都有一些缺口.这些缺口必须被迅速而准确地排列好.每个轮子都有一个起始标记(在0度),这样所有的轮子都可以在统一的已知位置开始转动.轮子按照角度变大 ...
- Java学习----Java数据类型
1.基本数据类型(8种) 数字类型: 整数: byte :-128~+127 short :-32768~+32767 int: -2147483648~+2147483637 long 小数类型: ...
- underscorejs-reject学习
2.9 reject 2.9.1 语法: _.reject(list, predicate, [context]) 2.9.2 说明: 前边我们已经学习了filter方法,那么我们在学习reject之 ...
- WebService传递XML数据 C#DataSet操作XML 解析WebService返回的XML数据
Webservice传递的数据只能是序列化的数据,典型的就是xml数据. /// <summary> /// 通过用户名和密码 返回下行数据 /// & ...
- java-二分查找法
package search; public class BinarySearch { public static void main(String[] args) { , , , , , , , , ...