up vote 7 down vote favorite
3
share [g+] share [fb]

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

link|improve this question

1  
"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 '09 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 '09 at 11:51
1  
@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 '09 at 15:10
feedback

6 Answers

up vote 11 down vote accepted

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

if sys.platform == 'linux2':
    subprocess.call(["xdg-open", file])
else:
    os.startfile(file)
link|improve this answer
feedback

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

link|improve this answer
On the Mac I actually did know how, but my application isn't going to run on Mac in the near future. ;) – Georg Schölly Nov 5 '09 at 12:45
feedback
if linux:
    os.system('xdg-open "$file"') #works for urls too
else:
    os.system('start "$file"') #a total guess
link|improve this answer
feedback

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|improve this answer
feedback

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

import webbrowser
webbrowser.open_new_tab(filename)
link|improve this answer
feedback

A small correction is necessary for NicDumZ's solution to work exactly as given. The problem is with the use of 'is' operator. A working solution is:

if sys.platform == 'linux2':
    subprocess.call(["xdg-open", file])
else:
    os.startfile(file)

A good discussion of this topic is at http://stackoverflow.com/questions/132988/is-there-a-difference-between-and-is-in-python.

link|improve this answer
Thanks. I've edited his answer to correct that minor mistake. – Georg Schölly Aug 14 '10 at 8:56
feedback

Your Answer

 
or
required, but never shown

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