Created
September 5, 2014 17:25
-
-
Save whalesalad/27c1ad4f909e50b205a7 to your computer and use it in GitHub Desktop.
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
| from random import randrange | |
| import re | |
| import urllib | |
| socket = urllib.urlopen("http://www.youporn.com/random/video/") | |
| htmlSource = socket.read() | |
| socket.close() | |
| result = re.findall('<p class="message">((?:.|\\n)*?)</p>', htmlSource) | |
| print result[randrange(len(result))] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment