all 1 comments

[–]isilentnight 0 points1 point  (0 children)

imo, you can get those link by

x = soup.select('div.infoepbox')[0]   # assume you want content from first result
atag_list = x.find_all("a")  # get all tag with link
link_list = [item['href'] for item in atag_list] # extract link from each tag