Less abstractions + Support for *bsd.

- Candidate list is now private.
- Added support for {free,open,net}bsd. Untested.
- Register GenericBrowser of OS at runtime (init).
4 files changed
tree: a110e105228a5bebe6ed3afc1095cf586fa691ec
  1. examples/
  2. doc.go
  3. LICENSE.txt
  4. README.md
  5. webbrowser.go
README.md

Webbrowser

Webbrowser provides a simple API for opening web pages on your default browser. It's inspired on Python's webbrowser package but lacks some of its features (open new window).

It just opens a webpage, most browsers will open it on a new tab.

It is licensed under the MIT open source license, please see the LICENSE.txt file for more information.

Installation

Copy & Paste fans: go get github.com/toqueteos/webbrowser

Usage

Just import the package (after you got it):

import "github.com/toqueteos/webbrowser"

Then use the Open function.

Open("http://golang.org")

Just in case, you have a very simple example on examples/simple.go.