I hope this question is not a RTFM one. I am trying to write a Python script that extracts links from a standard HTML webpage (the tags). I hav
tags). I hav
It depends a bit on how the HTML is produced. If it's somewhat controlled you can get away with:
re.findall(r'''''', html, re.I)