Python具有非常方便的webbrowser
包,其中包含webbrowser.open()
函数,该函数允许在某个位置打开浏览器,甚至在本地文件系统中的文件上也是如此。这样,Python程序可以例如生成Web文档作为输出并将其呈现给用户。哪个Haskell包暴露了类似的功能?
答案 0 :(得分:2)
有一个名为open-browser的包:
$ stack ghci open-browser
Run from outside a project, using implicit global project config
Using resolver: lts-6.14 from implicit global project's config file: /home/sibi/.stack/global-project/stack.yaml
open-browser-0.2.1.0: using precompiled package
Configuring GHCi with the following packages:
GHCi, version 7.10.3: http://www.haskell.org/ghc/ :? for help
λ> import Web.Browser
λ> openBrowser "https://www.google.com"
True
这会在我的默认浏览器Firefox中打开Google页面。