How to send a picture to printer with python on macOS

2.4k Views Asked by At

I'm doing a python program (using python3.6) that dynamically generates a .jpg picture as output (I used Pillow module). How can I send that picture directly to my printer automatically right after I generate it? I tried to look into the os module but I couldn't figure out how to do it.

1

There are 1 best solutions below

8
On

The os module should be able to that on MacOS with

os.system("lpr -P YOUR_PRINTER file_name.jpg")