Advertisement
Aha2Y

Untitled

Apr 3rd, 2012
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. #Meme module for internets.
  2. import urllib
  3. from BeautifulSoup import BeautifulSoup
  4. import random
  5. import sys
  6.  
  7. url = urllib.urlopen("http://validator.w3.org/check?uri=kingdread.de")
  8. soup = BeautifulSoup(url)
  9. soup = str(soup)
  10.  
  11. print soup.find("Errors")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement