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.)
|
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
Related
| |||||||||||
feedback
|
|
os.startfile is only available for windows for now, but xdg-open will be available on any unix client running X.
| ||||
|
feedback
|
|
on windows it works with | |||
feedback
|
| |||
|
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:
where | ||||
|
feedback
|
|
Open file using an application that your browser thinks is an appropriate one:
| |||
|
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:
A good discussion of this topic is at http://stackoverflow.com/questions/132988/is-there-a-difference-between-and-is-in-python. | |||
|
feedback
|