Skip to content

Instantly share code, notes, and snippets.

@zhiyue
Forked from liushuaikobe/easy-refresh.py
Last active August 29, 2015 14:20
Show Gist options
  • Save zhiyue/e4b58ec06a873edbe7c6 to your computer and use it in GitHub Desktop.
Save zhiyue/e4b58ec06a873edbe7c6 to your computer and use it in GitHub Desktop.
import webbrowser
import os
urls = [
'http://www.douban.com',
'http://weibo.com',
'http://www.zhihu.com',
'http://www.v2ex.com/',
'https://github.com/',
'https://mail.google.com/',
'http://instagram.com/',
'http://www.xiami.com'
]
map(lambda x: webbrowser.open(x), urls)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment