Python type XXX cannot be converted

python
mysql.connector.errors.InterfaceError: Failed executing the operation; Python type Tag cannot be converted

BeautifulSoupを使用して取得したHTMLタグをそのままMySQLにデータ挿入しようとした時に表示されたエラー。

python
soup.find(class_="xxx") # Tagオブジェクトのままでは挿入できない
python
str(soup.find(class_="xxx")) # 文字に変換して挿入する

関連記事