Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
fhudi
/
textgames
like
3
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8f5315f
textgames
/
read_pkl.py
fhudi
Upload folder using huggingface_hub
7d76671
verified
2 months ago
raw
Copy download link
history
blame
Safe
225 Bytes
import
pickle
def
read_pkl
(
fp
):
with
open
(fp,
"rb"
)
as
f:
data = []
try
:
while
True
:
data.append(pickle.load(f))
except
EOFError
as
e:
pass
return
data