Socket
Socket知识分享
Mr_chenweida
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
python中socket tcp和udp简单实现
1、socket udp发送数据import socketdef main(): # 创建一个udp套接字 udp_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) # 使用套接字收发数据 udp_socket.sendto(b"hahaha", ("192.168.2.102", 8888)...原创 2020-03-02 15:31:00 · 379 阅读 · 0 评论 -
让web服务器支持WSGI协议实现简单框架
web_serverimport socketimport reimport multiprocessingimport timeimport demo05_frameclass WSGIServer(object): def __init__(self): # 1. 创建套接字 self.tcp_server_socket = socket...原创 2020-03-04 14:52:14 · 275 阅读 · 1 评论
分享