websockets
supramolecular
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
php 实现websockets客户端
php 实现websockets客户端,需要利用swoole(参考文档:https://wiki.swoole.com/#/) require "WebSocketClient.php"; $client = new WebSocketClient(); $client->connect("127.0.01", 9501); $client->on("open", functio...原创 2020-02-29 17:25:51 · 794 阅读 · 0 评论 -
Python实现websockets客户端
Python websockets库是用于在Python中构建WebSocket服务器和客户端的库。参考文档(https://www.yiibai.com/websocket/python-websockets-library.html,https://websockets.readthedocs.io/en/stable/intro.html ) 关于async异步文档见(python3.7 ...原创 2020-02-29 17:17:25 · 5062 阅读 · 0 评论
分享