Relative Content

Tag Archive for pythonflaskfastapi

Flask and FastAPI uploaded file type

The type hint for Flask werkzeug.datastructures.FileStorage.stream is IO[bytes] and for FastAPI fastapi.UploadFile.file is BinaryIO. But when I check the type of an uploaded file using isinstance(), it is tempfile.SpooledTemporaryFile for both Flask and FastAPI. Why?