Created
May 21, 2015 02:44
-
-
Save wgm89/3f108c515239aab4396d to your computer and use it in GitHub Desktop.
Everyday I come to office, I've to open up a fixed number of links on my web-browser.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/python -tt | |
| import webbrowser | |
| def main(): | |
| webbrowser.open('http://www.v2ex.com') | |
| webbrowser.open_new_tab('https://www.quora.com') | |
| if __name__ == '__main__': | |
| main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment