Skip to content

Open a file, directory, or URI using the OS's default application for that object type. Optionally, you can specify an application to use.

License

Notifications You must be signed in to change notification settings

panda2134/open-python

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

open

Description

Open a file, directory, or URI using the OS's default application for that object type. Optionally, you can specify an application to use.

This is a proxy for the following commands:

    OSX: "open"
Windows: "start"

Linux/Other: "xdg-open"

This is a python port of the node.js module: https://github.com/pwnall/node-open

Import

import open_python

Usage

open google.com in the user's default browser:

open_python.start("https://google.com/")

you can specify the program to use:

open_python.start("https://google.com/", "firefox")	

use in command line

$ python -m open_python https://google.com/

License

Copyright (c) 2013 skratchdot
Licensed under the MIT license.

Contributors

skratchdot panda2134

About

Open a file, directory, or URI using the OS's default application for that object type. Optionally, you can specify an application to use.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%