9 lines
144 B
Python
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
|