add files

This commit is contained in:
WorldTeacher
2024-01-26 08:28:01 +01:00
parent dd9ee24a8f
commit 0a9818940c
110 changed files with 21563 additions and 0 deletions

9
src/backend/pickles.py Normal file
View File

@@ -0,0 +1,9 @@
import pickle
from typing import ByteString, Any
def make_pickle(data:Any):
return pickle.dumps(data)
def load_pickle(data:ByteString):
return pickle.loads(data)