Skip to content

Instantly share code, notes, and snippets.

@rahul8590
Created April 6, 2013 18:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rahul8590/5327197 to your computer and use it in GitHub Desktop.
Save rahul8590/5327197 to your computer and use it in GitHub Desktop.
#I have written a small snippet to open a given url which doest open on first time and i need to
#Keep refreshing it.
import webbroswer
import time
url = "the url u want to enter"
for i in range(5):
webbrowser.open_new_tab(url)
time.sleep(5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment