当前位置:   article > 正文

用Python实现的WebSocket客户端_python 优美的websocket客户端

python 优美的websocket客户端

1. 按

一个项目若需用到多种语言开发请参考:基于WebSocket实现的分布式微内核项目

2. 安装库

pip install websocket_client
  • 1

3. 代码

import websocket

try:
	import thread
except ImportError:
	import _thread as thread
import time


def on_message(ws, message):
	print(message)


def on_error(ws, error):
	print(error)


def on_close(ws):
	print("### closed ###")


def on_open(ws):
	def run(*args):
		for i in range(3):
			time.sleep(1)
			ws.send("Hello %d" % i)
		time.sleep(1)
		ws.close()
		print("thread terminating...")

	thread.start_new_thread(run, ())


if __name__ == "__main__":
	websocket.enableTrace(True)
	ws = websocket.WebSocketApp("ws://127.0.0.1:56/",
								on_message=on_message,
								on_error=on_error,
								on_close=on_close)
	ws.on_open = on_open
	ws.run_forever()

  • 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
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/85439
推荐阅读
相关标签
  

闽ICP备14008679号