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