1. ホーム
  2. スクリプト・コラム
  3. パイソン

[解決済み】TypeError: re.findall()でバイトのようなオブジェクトに文字列パターンを使用することはできません。)

2022-01-10 16:31:49

質問

ページのタイトルを取得したいのですが、以下のようなコードです。

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()

title = re.findall(pattern, html)
print(title)

実行すると、エラーが発生します。

Traceback (most recent call last):
  File "path\to\file\Crawler.py", line 11, in <module>
    title = re.findall(pattern, html)
  File "C:\Python33\lib\re.py", line 201, in findall
    return _compile(pattern, flags).findall(string)
TypeError: can't use a string pattern on a bytes-like object

解決方法は?

html(バイトのようなオブジェクト)を文字列に変換するために .decode は、例えば html = response.read().decode('utf-8') .

参照 バイトをPythonの文字列に変換する