Spaces:
Runtime error
Runtime error
File size: 260 Bytes
16eecd4 |
1 2 3 4 5 6 7 8 9 10 11 |
import os
import pickle as pkl
def get_database(PKL_PATH):
database = {}
if os.path.getsize(PKL_PATH) > 0:
with open(PKL_PATH, "rb") as f:
unpickler = pickle.Unpickler(f)
database = unpickler.load()
return database |