胖蔡说技术
随便扯扯

标签:socket

Python

Python中Socket的使用

胖蔡阅读(548)赞(0)

python网络通信需要导入一个socket模块来支持通信过程。socket通信分为客户端和服务端。服务端负责监听当前设备接口的信息发送情况,客户端实现通过ip和接口向目的主机发送信息的功能。接下来,主要看python中的tcp、udp的通...

Python

Sanic中套接字的使用

胖蔡阅读(669)赞(0)

Sanic可以使用python 套接字模块来容纳非IPv4套接字。 IPv6示例: from sanic import Sanic from sanic.response import json import socket sock = s...

Python

Sanic WebSocket使用

胖蔡阅读(747)赞(0)

Sanic在websockets之上提供了易于使用的抽象。Sanic支持websocket版本7和8。 设置WebSocket: from sanic import Sanic from sanic.response import json...