2016年2月8日 星期一

Python Standard Library webbrowser

Python Standard Library裡有webbrowser這個module

webbrowser提供簡單的function,來執行瀏覽器

例如
webbrowser.open(url, new=0, autoraise=True)

就會打開瀏覽器,瀏覽輸入url的網址的網頁

如果要指定特定瀏覽器來瀏覽
可以使用webbrowser.get來得到object
再使用這個object來呼叫open function


firefox = webbrowser.get('C:/Program Files (x86)/Mozilla Firefox/firefox.exe %s')
firefox.open("www.google.com")

這裡要注意的是傳入get function裡的路徑
與windows裡路徑使用' \ ' 不同
要使用unix-style的' / '才有辦法找到路徑

參考網站
https://docs.python.org/2/library/webbrowser.html

沒有留言:

張貼留言