ws
This commit is contained in:
parent
f68f33cd34
commit
2314b931b5
@ -77,7 +77,8 @@ manager = WebsocketUtil()
|
|||||||
def write(id: str, ws: List):
|
def write(id: str, ws: List):
|
||||||
print(f"序列化对象{ws}")
|
print(f"序列化对象{ws}")
|
||||||
with open(f"{id}.pkl", "wb") as f:
|
with open(f"{id}.pkl", "wb") as f:
|
||||||
wsdump = pickle.dump(ws, f)
|
pickle.dump(ws, f)
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
|
||||||
def read(id: str):
|
def read(id: str):
|
||||||
@ -85,5 +86,6 @@ def read(id: str):
|
|||||||
with open(f"{id}.pkl", "rb") as f:
|
with open(f"{id}.pkl", "rb") as f:
|
||||||
wss = pickle.load(f)
|
wss = pickle.load(f)
|
||||||
print(wss)
|
print(wss)
|
||||||
|
f.close()
|
||||||
print(f"反序列化对象{wss}")
|
print(f"反序列化对象{wss}")
|
||||||
return wss
|
return wss
|
Loading…
x
Reference in New Issue
Block a user