手机
当前位置:查字典教程网 >脚本专栏 >python >python网络编程实例简析
python网络编程实例简析
摘要:本文实例讲述了python网络编程,分享给大家供大家参考。具体方法如下:服务端代码如下:fromSocketServerimport(TCP...

本文实例讲述了python网络编程,分享给大家供大家参考。

具体方法如下:

服务端代码如下:

from SocketServer import(TCPServer as TCP, StreamRequestHandler as SRH) from time import ctime HOST = '' PORT = 21567 ADDR = (HOST, PORT) class MyRequestHandle(SRH): def handle(self): print 'connecting from ..', self.client_address self.wfile.write("[%s]:%s" % (ctime(),self.rfile.readline()) ) tcp_Server = TCP(ADDR,MyRequestHandle) print 'WAITING connecting...' tcp_Server.serve_forever()

客户端代码如下:

from socket import * HOST = 'localhost' PORT = 21567 BUFSIZE = 1024 ADDR = (HOST, PORT) while True: tcpCliSock = socket(AF_INET,SOCK_STREAM) tcpCliSock.connect(ADDR) data = raw_input('>>>') if not data: break tcpCliSock.send("%srn" % data) data = tcpCliSock.recv(BUFSIZE) if not data: break print data.strip() tcpCliSock.close()

希望本文所述对大家的Python程序设计有所帮助。

【python网络编程实例简析】相关文章:

Python实现的Kmeans++算法实例

python实现sublime3的less编译插件示例

python网络编程示例(客户端与服务端)

python登录QQ邮箱发信的实现代码

python多线程http下载实现示例

python 示例分享---逻辑推理编程解决八皇后

用Python编程实现语音控制电脑

python利用hook技术破解https的实例代码

Python高效编程技巧

python支持断点续传的多线程下载示例

精品推荐
分类导航