deepl-python icon indicating copy to clipboard operation
deepl-python copied to clipboard

Failed to open the uploaded document

Open AK47Poi opened this issue 1 year ago • 5 comments

Hi,when I use the code to upload the file for translation, the translation reports an error.How can I change my code? deepl.exceptions.DocumentTranslationException: Error occurred while translating document: Failed to open the uploaded document.

AK47Poi avatar Aug 20 '24 13:08 AK47Poi

This indicates an error on the server side (the server could not open your document). Does this happen consistently, even if you retry the translation? Are you sending a valid document of the supported types?

JanEbbing avatar Aug 23 '24 08:08 JanEbbing

I encounter the same error when I retry the translation, and I am uploading files of types docx, xlsx, and pptx. Can I provide the docid to help investigate the issue?

AK47Poi avatar Aug 23 '24 08:08 AK47Poi

To solve this problem, do not use the file path, send the file as a binary data stream.

with open(file=filepath, mode="rb") as f:
	doc_handle = translator.translate_document_upload(input_document=f.read(),... 

fernandolvwrk avatar Oct 09 '24 12:10 fernandolvwrk

Were you using translate_document on a filepath? That method only works with file-like objects, as the docs state. We have translate_document_from_filepath to pass in file paths. See for example our tests on these:

From filepath

From file object

JanEbbing avatar Oct 09 '24 13:10 JanEbbing

Yes, you are 100% right. translate_document_from_filepath() works fine with a filepath, but my app needs to execute the steps individually, so I had to use translate_document_upload(), translate_document_get_status(), and translate_document_download(). You are right again, the docs state clearly that translate_document_upload() requires a file object or a stream. Thanks!

fernandolvwrk avatar Oct 09 '24 13:10 fernandolvwrk