Today we are going to share a Python program to get all links from a website. If you are a python beginner and want to start learning the python programming, then keep your close attention in this tutorial as I am going to share a Python program to get all links from a website.
Copy the below python program and execute it with the help of python compiler. This program will extract all the links from given website URL.
1 2 3 4 5 6 7 8 9 10 11 12 | import urllib2 import re #connect to a URL website = urllib2.urlopen(url) #read html code html = website.read() links = re.findall('"((http|ftp)s?://.*?)"', html) print links |
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.