Files
SemesterapparatsManager/src/utils/blob.py

9 lines
144 B
Python

def create_blob(file):
"""
Creates a blob from a file.
"""
with open(file, "rb") as f:
blob = f.read()
return blob