Files
superfaktura-client/superfaktura/utils/__init__.py
2025-03-03 20:22:34 +01:00

11 lines
240 B
Python

import tempfile
from typing import IO
def save_temporary_file_as_pdf(
temp_file: IO[bytes], output_path: str = "output.pdf"
) -> None:
with open(output_path, "wb") as f:
f.write(temp_file.read())
temp_file.close()