Skip to content

Instantly share code, notes, and snippets.

@ramalho
Forked from pydanny/gist:1298848
Created October 19, 2011 19:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ramalho/1299473 to your computer and use it in GitHub Desktop.
Save ramalho/1299473 to your computer and use it in GitHub Desktop.
PyCon random review script
#!/usr/bin/python
import random
import webbrowser
target = random.randrange(3, 483)
url = 'http://us.pycon.org/2012/review/%s/' % target
webbrowser.open(url)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment