## Download file `files.download(strfile_id) -> BinaryResponseContent` **get** `/v1/files/{file_id}/content` Download the original uploaded file content. ### Parameters - `file_id: str` The unique identifier of the file. ### Returns - `BinaryResponseContent` ### Example ```python import os from deeptable import DeepTable client = DeepTable( api_key=os.environ.get("DEEPTABLE_API_KEY"), # This is the default and can be omitted ) response = client.files.download( "file_01kfxgjd94fn9stqm414vjb0s8", ) print(response) content = response.read() print(content) ```