当前位置:
首页 > 编程开发 > Python基础教程 >
-
python基础教程之python-网络编程(5)
回到顶部
2.7.Twisted框架
twisted是一个用python语言写的事件驱动的网络框架,他支持很多种协议,包括UDP,TCP,TLS和其他应用层协议,比如HTTP,SMTP,NNTM,IRC,XMPP/Jabber。 非常好的一点是twisted实现和很多应用层的协议,开发人员可以直接只用这些协议的实现。其实要修改Twisted的SSH服务器端实现非常简单。很多时候,开发人员需要实现protocol类。
一个Twisted程序由reactor发起的主循环和一些回调函数组成。当事件发生了,比如一个client连接到了server,这时候服务器端的事件会被触发执行。
安装方法:
进入链接https://pypi.org/simple/twisted/下载安装包进行安装。
方法二:
1
2
3
|
sudo apt- get install python-setuptools sudo apt- get install python-dev sudo easy_install twisted |
服务端:#!/use/bin/env python
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# -*- coding: utf-8 -*- from twisted.internet import protocol, reactor import time PORT = 21567 <br>#获得protocol类并为时间戳服务器调用TSServProtocol,然后重写了connetctionMade()和dataReceived()方法<em id= "__mceDel" ><br> class TSServProtocol(protocol.Protocol):<br> #当客户端连接到服务器时就执行connectionMade() def connectionMade(self): clnt =self.clnt = self.transport.getPeer().host print '...connected from:' , clnt<br> #当服务器接收到客户端请求时执行dataReceived() def dataReceived(self, data): lotime = time.strftime( "%Y-%m-%d %H:%M:%S" , time.localtime()) self.transport.write( '[%s] %s' % (lotime, data)) factory = protocol.Factory() factory.protocol = TSServProtocol print 'waiting for connection ...' reactor.listenTCP(PORT, factory) reactor.run() </em> |
客户端:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/use/bin/env python # -*- coding: utf-8 -*- from twisted.internet import protocol, reactor HOST = 'localhost' PORT = 21567 class TSClntProtocol(protocol.Protocol): def sendData(self): data = raw_input( '> ' ) if data: print '...sending %s...' % data self.transport.write(data) else : self.transport.loseConnection() def connectionMade(self): self.sendData() def dataReceived(self, data): print data self.sendData() class TSClntFactory(protocol.ClientFactory): protocol = TSClntProtocol clientConnectionLost = clientConnectionFalied = lambda self, connector, reason: reactor.stop() reactor.connectTCP(HOST, PORT, TSClntFactory()) reactor.run() |
栏目列表
最新更新
60%的人不懂Python进程Process,你懂吗?
python-网络编程
python连接sqlserver工具类
Python爬虫技术:爬虫时如何知道是否代理
selenium设置user-agent以及对于是否是浏览器
MAC自带Apache配置python3
【Python必学】Python爬虫反爬策略你肯定不
flask与Flask-CORS的使用
flask 与 SQLAlchemy的使用
python连接Oracle工具类
.Net Standard(.Net Core)实现获取配置信息
Linux PXE + Kickstart 自动装机
Shell 编程 基础
Shell 编程 条件语句
CentOS8-网卡配置及详解
Linux中LVM逻辑卷管理
1.数码相框-相框框架分析(1)
Ubuntu armhf 版本国内源
Linux中raid磁盘阵列
搭建简易网站
mysql 安装了最新版本8.x版本后的报错:
Mysql空间数据&空间索引(spatial)
如何远程连接SQL Server数据库的图文教程
复制SqlServer数据库的方法
搜索sql语句
sql中返回参数的值
sql中生成查询的模糊匹配字符串
数据定义功能
数据操作功能
将Session值储存于SQL Server中