• 大小: 3KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-02
  • 语言: Python
  • 标签: Python  websocket  server  

资源简介

python websocket server javascript websocket client

资源截图

代码片段和文件信息

#coding: utf-8

import socket
import base64
import hashlib
import struct
import threading


class websocket_thread(threading.Thread):
    def __init__(self connection):
        super(websocket_thread self).__init__()
        self.connection = connection
        print(“web_socket_thread inited“)



    def run(self):
        while True:
            try:
                data = self.connection.recv(1024)
                if 0 == len(data):
                    continue
            except Exception as e:
                print(“exception : “ + str(e))
                break
            print(data)
            data = self.parse_data(data)
            if len(data) == 0 :
                continue
            # message = self.username + “ : “ + data
            # notif

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        6638  2017-08-22 22:03  Python_websocket_Proj\pythonServer.py
     文件        1184  2017-08-22 11:13  Python_websocket_Proj\websocketClient.html
     目录           0  2017-08-24 22:03  Python_websocket_Proj\

评论

共有 条评论