hypertext

This commit is contained in:
Marc Beninca 2021-10-09 14:02:20 +02:00 committed by Marc Beninca
parent ec871e1081
commit c70cab386d

18
hypertext.py Normal file
View file

@ -0,0 +1,18 @@
import html.parser
class Parser(html.parser.HTMLParser):
def __init__(self):
self.links = []
super().__init__()
def handle_starttag(self, tag, attributes):
if tag == 'a':
self.links.extend(
[v for k, v in attributes if k == 'href'])
def get_links(hypertext):
parser = Parser()
parser.feed(hypertext)
return parser.links