My application prints a PDF to a temporary file. How can I open that file with the default application in Python?
I need a solution for
on windows it works with os.system('start '). On Mac (I know you didn't ask...) it's os.system('open ')
os.system('start ')
os.system('open ')