so I have this code...
url = 'http://google.com'
linkregex = re.compile('<a\s*href=[\'|"](.*?)[\'"].*?>')
m = urllib.request.urlopen(url)
msg = m.read()
links = linkregex.findall(msg)
but then python returns this error
links = linkregex.findall(msg)
TypeError: can't use a string pattern on a bytes-like object
what did i do wrong??