Home > Software design >  BeautifulSoup getting href of a list with 10k records
BeautifulSoup getting href of a list with 10k records

Time:05-07

BeautifulSoup getting href of a list with records

I have the following soup:

<a href="some_url">next</a>
<span >...</span>

From this I want to extract the href, "some_url"

and the whole list of the pages that are listed on this page: enter image description here

  • Related