Python type XXX cannot be converted
python
mysql.connector.errors.InterfaceError: Failed executing the operation; Python type Tag cannot be convertedBeautifulSoupを使用して取得したHTMLタグをそのままMySQLにデータ挿入しようとした時に表示されたエラー。
python
soup.find(class_="xxx") # Tagオブジェクトのままでは挿入できないpython
str(soup.find(class_="xxx")) # 文字に変換して挿入する