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