python请求websocket

##-*- coding: utf-8 -*-
import json
import queue
import random
import ssl
import time
import websocket
import threading
from json_info import msg,ws_url,headers
message_queue = queue.Queue()
data_path=None

def on_message(ws, message):
    def run(*args):
        """处理接收到的消息"""
        print(json.dumps(json.loads(message),ensure_ascii=False))
    threading.Thread(target=run).start()

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

def on_close(ws, close_status_code, close_msg):
    print("WebSocket closed:{}\t{}".format(close_status_code, close_msg))

def get_msg(query,**kwargs):
    """构造消息体"""
    msg["query"]=query
    msg['msgId']=msg['msgId']+str(random.randint(1,100000))
    msg['recordId']=msg['recordId']+str(random.randint(1,100000))
    for key in kwargs:
        msg[key]=kwargs[key]
    return json.dumps(msg,ensure_ascii=False)

def on_open(ws):
    def run(*args):
        with open(data_path, 'r', encoding='utf-8') as f:
            for line in f:
                message=get_msg(line.strip())
                ws.send(message)
                time.sleep(3)
        ws.close()
    threading.Thread(target=run).start()

def connect():
    try:
        ws = websocket.WebSocketApp(ws_url,
                                    on_message=on_message,
                                    on_error=on_error,
                                    on_close=on_close,
                                    header=headers,
                                    on_open=on_open)
        ws.run_forever(sslopt={"cert_reqs": ssl.CERT_NONE})
    except Exception as e:
        print("Connection failed: %s" % e)

if __name__=="__main__":
    data_path="./query.txt"
    connect()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值