-
大小: 0.79KB文件类型: .zip金币: 1下载: 0 次发布日期: 2021-01-30
- 语言: Python
- 标签:
资源简介
Python SocketServer, threading
代码片段和文件信息
import SocketServer threading json
conn = {}
conn_lock = threading.Lock()
class ThreadingServer(SocketServer.ThreadingMixIn\
SocketServer.TCPServer):
allow_reuse_address = True
class Handler(SocketServer.StreamRequestHandler):
def handle(self):
print “A new client connected“ self.client_address
msg = json.read_stream(self.rfile)
if “!name“ in msg:
name = msg[“!name“]
wlock = threading.Lock()
conn_lock.acquire()
conn[name] = (wlock self.wfile)
conn_lock.release()
print “Client registered (%s)“ % name
reply = {“ok“: u“registered“}
self.wfile.write(json.write(reply))
self.wfile.flush()
else:
reply = {“er
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2040 2010-04-19 23:05 080-jsongateway.py
- 上一篇:bt种子文件解析 含
- 下一篇:python爬虫爬取当当网
相关资源
- python while
- 随机生成50000个不重复的手机号码
- Python-借助adb工具配合Python脚本来实现
- HDF批量转TIF
- arp欺骗python脚本:arp_spoof.py
- python turtle画机器猫
- FP-Growth算法python实现(完整代码)
- python 获取控制台输入的值
- python随机生成学生信息并写入文件(
- python比丘特之箭(基于turtle)
- python动态 画花朵(turtle)
- python贪吃蛇(pygame入门级示例源码)
- python绘制多彩N边形(turtle)
-
深度学习目标检测提取xm
l文件中的 - python提取word中的图片到指定文件夹
- python将word转为pdf文件
- Python爬虫:爬取小说站(biqukan.com)网
- gnn(PageRank.ipynb)
- python绘制 大蟒蛇
- python 人群计数
- “去哪儿吃”帮你选餐厅(python代码
- python 画的一棵树(基于turtle+math+ran
- 轴承故障诊断python代码
- python 画奥运五环(基于turtle)
- 词向量生成(word2vector.py)
- 行列式转置(reverseArray.py)
- 小型CMS源代码
- Python项目开发实战(第2版)高清晰
- tensorflow版本的YOLO v3,在Windows系统下
- python实现折线图效果
评论
共有 条评论