How can I retrieve the links of a webpage and copy the url adress of the links using Python?
feedback
|
|
Here's a short snippet using the SoupStrainer class in BeautifulSoup:
The BeautifulSoup documentation is actually quite good, and covers a number of typical scenarios: http://www.crummy.com/software/BeautifulSoup/documentation.html Edit: Note that I used the SoupStrainer class because it's a bit more efficient (memory and speed wise), if you know what you're parsing in advance. | |||||||||
feedback
|
| |||||||||
feedback
|
|
Others have recommended BeautifulSoup, but it's much better to use lxml. Despite its name, it is also for parsing and scraping HTML. It's much, much faster than BeautifulSoup, and it even handles "broken" HTML better than BeautifulSoup (their claim to fame). It has a compatibility API for BeautifulSoup too if you don't want to learn the lxml API. There's no reason to use BeautifulSoup anymore, unless you're on Google App Engine or something where anything not purely Python isn't allowed. lxml.html also supports CSS3 selectors so this sort of thing is trivial. An example with lxml and xpath would look like this:
| ||||
|
feedback
|
|
just for getting the links, without B.soup and regex:
for more complex operations, of course BSoup is still preferred. | |||
|
feedback
|