Following Links in Python
In this assignment you will write a Python program that expands on http://www.py4e.com/code3/urllinks.py. The program will use urllib to read the HTML from the data files below, extract the href= vaues from the anchor tags, scan for a tag that is in a particular position relative to the first name in the list, follow that link and repeat the process a number of times and report the last name you find.
We provide two files for this assignment. One is a sample file where we give you the name for your testing and the other is the actual data you need to process for the assignment
- Sample problem: Start at http://py4e-data.dr-chuck.net/known_by_Fikret.html
Find the link at position 3 (the first name is 1). Follow that link. Repeat this process 4 times. The answer is the last name that you retrieve.
Sequence of names: Fikret Montgomery Mhairade Butchi Anayah
Last name in sequence: Anayah - Actual problem: Start at: http://py4e-data.dr-chuck.net/known_by_Babyjane.html
Find the link at position 18 (the first name is 1). Follow that link. Repeat this process 7 times. The answer is the last name that you retrieve.
Hint: The first character of the name of the last page that you will load is: R
The web pages tweak the height between the links and hide the page after a few seconds to make it difficult for you to do the assignment without writing a Python program. But frankly with a little effort and patience you can overcome these attempts to make it a little harder to complete the assignment without writing a Python program. But that is not the point. The point is to write a clever Python program to solve the program.
SOLUTION
import urllib.request
from bs4 import BeautifulSoup
url = ('http://py4e-data.dr-chuck.net/known_by_Babyjane.html')
count_num = int(input('Enter count: '))
pos = int(input('Enter position: '))
def parseHtml(url, pos):
html = urllib.request.urlopen(url).read()
soup = BeautifulSoup(html)
tags = soup('a')
i = 0
for tag in tags:
i += 1
if i == pos:
return tag.get('href', tag)
current_num = 0
while current_num < count_num:
print ('Retrieving: ', url)
url = parseHtml(url, pos)
current_num += 1
print ('The Last URL of this turn:', url)
0 Comments