Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import urllib2
- import re
- #connect to a URL
- website = urllib2.urlopen("url")
- #read html code
- html = website.read()
- #use re.findall to get all the links
- links = re.findall('"((http|ftp)s?://.*?)"', html)
- print links
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement