vote up 6 vote down star
3

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

  • Windows
  • Linux (Ubuntu with Xfce if there's nothing more general.)

Related

flag

"The standard application"? PDF Document Viewer? Ghostscript? gs? Adobe Reader? Do you want the OS to do the file-type to application mapping? What are you asking for? – S.Lott Nov 5 at 11:09
@S.Lott I think 'the standard application' is clearly a synonym for the default application, so let the OS decide which app to run. – danio Nov 5 at 11:51
@danio: It may be "clearly a synonym" to some. The question, however, doesn't define "standard application" in any useful way. I'd rather not assume, since other people will refer to this question in the future. – S.Lott Nov 5 at 15:10

5 Answers

vote up 8 vote down check

os.startfile is only available for windows for now, but xdg-open will be available on any unix client running X.

if sys.platform is 'linux2':
    subprocess.call(["xdg-open", file])
else:
    os.startfile(file)
link|flag
vote up 2 vote down
if linux:
    os.system('xdg-open "$file"') #works for urls too
else:
    os.system('start "$file"') #a total guess
link|flag
vote up 3 vote down

on windows it works with os.system('start <myFile>'). On Mac (I know you didn't ask...) it's os.system('open <myFile>')

link|flag
On the Mac I actually did know how, but my application isn't going to run on Mac in the near future. ;) – gs Nov 5 at 12:45
vote up 0 vote down

Ask your favorite Application Framework for how to do this in Linux.

This will work on Windos and Linux as long as you use GTK:

import gtk
gtk.show_uri(gtk.gdk.screen_get_default(), URI, 0)

where URI is the local URL to the file

link|flag
vote up 0 vote down

Open file using an application that your browser thinks is an appropriate one:

import webbrowser
webbrowser.open_new_tab(filename)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.