Why Does `re.findall()` Throw a `TypeError: Can\'t Use a String Pattern on a Bytes-Like Object` When Extracting URLs?

Susan Sarandon
Release: 2024-11-17 11:31:02
Original
618 people have browsed it

Why Does `re.findall()` Throw a `TypeError: Can't Use a String Pattern on a Bytes-Like Object` When Extracting URLs?

TypeError: Can't Use a String Pattern on a Bytes-Like Object in re.findall()

While attempting to automatically fetch URLs from a web page, you may encounter the following error:

TypeError: can't use a string pattern on a bytes-like object in re.findall()
Copy after login

In your code, you use re.findall() to find matches for a regular expression regex. However, when you try to apply the regular expression to the HTML content you've fetched, you get the error.

Underlying Cause:

The issue stems from the fact that the HTML content you're working with is in byte form, whereas the regular expression you're using is in string form. The regular expression cannot be applied directly to a byte-like object.

Lösung:

To resolve this issue, you need to convert the HTML content to a string:

html = response.read().decode('utf-8')
Copy after login

This will decode the byte-like HTML content into a string, allowing the regular expression to be applied successfully.

Once you've made the conversion, you can proceed with using the regular expression to find the title of the web page. The corrected code should look like this:

import urllib.request
import re

url = "http://www.google.com"
regex = r'<title>(,+?)</title>'
pattern = re.compile(regex)

with urllib.request.urlopen(url) as response:
   html = response.read().decode('utf-8')

title = re.findall(pattern, html)
print(title)
Copy after login

The above is the detailed content of Why Does `re.findall()` Throw a `TypeError: Can\'t Use a String Pattern on a Bytes-Like Object` When Extracting URLs?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template