Python type XXX cannot be converted

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

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

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