Is there any simple, robust and fast way to extract all anchors' href attributes HTML in python?
I know there is a solution using BeautifulSoup, but the problem with BeautifulSoup is that it's too heavy, and consumes a lot of memory on some URLs.
The task that I'm talking about is very simple - just run over an HTML and return all the HREFs of all the anchors.
Anybody knows?
Thanks!