Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import re
- import urllib
- results = urllib.urlopen('http://reddit.com', data = None, proxies = None)
- for words in results.readlines():
- m = re.search('\Wgaming+',words)
- if m != None:
- print m.group()
Advertisement
Add Comment
Please, Sign In to add comment