webbrowser
webbrowser copied to clipboard
:snake: Python's webbrowser lib in Go. Simple API for opening web pages on your default browser.
Results
1
webbrowser issues
Sort by
recently updated
recently updated
newest added
``` package main import "github.com/toqueteos/webbrowser" func main() { webbrowser.Open("file:///C:/Users/{name}/Desktop/calc.exe") } ``` On Windows, if you use a command like start file://a.exe, it is treated the same as start a.exe. Therefore,...