user3724234
user3724234

Reputation: 45

Is there a way to allow duplex printing in excel using python?

I am trying to find a way to configure my excel sheet to duplex printing using python.

I am currently making excel file using xlswriter but it seems there is no option for duplex printing in the document.

I could modify the excel file using some other code to allow duplex writer just before I print.

Has anyone has a way to allow duplex printing an existing document using python ?

Upvotes: 0

Views: 184

Answers (1)

jmcnamara
jmcnamara

Reputation: 41544

I am currently making excel file using xlswriter but it seems there is no option for duplex printing in the document.

Duplex printing is a function of the printer and not the document so it cannot be controlled by XlsxWriter.

Upvotes: 1

Related Questions