## Download document file content `documents.download(strid) -> BinaryResponseContent` **get** `/documents/{id}/download` Download the binary content of the document file ### Parameters - `id: str` ### Returns - `BinaryResponseContent` ### Example ```python from withluminary import Luminary client = Luminary() response = client.documents.download( "id", ) print(response) content = response.read() print(content) ```