hm
This commit is contained in:
18
venv/lib/python3.12/site-packages/socketio/msgpack_packet.py
Normal file
18
venv/lib/python3.12/site-packages/socketio/msgpack_packet.py
Normal file
@@ -0,0 +1,18 @@
|
||||
import msgpack
|
||||
from . import packet
|
||||
|
||||
|
||||
class MsgPackPacket(packet.Packet):
|
||||
uses_binary_events = False
|
||||
|
||||
def encode(self):
|
||||
"""Encode the packet for transmission."""
|
||||
return msgpack.dumps(self._to_dict())
|
||||
|
||||
def decode(self, encoded_packet):
|
||||
"""Decode a transmitted package."""
|
||||
decoded = msgpack.loads(encoded_packet)
|
||||
self.packet_type = decoded['type']
|
||||
self.data = decoded.get('data')
|
||||
self.id = decoded.get('id')
|
||||
self.namespace = decoded['nsp']
|
||||
Reference in New Issue
Block a user