Сейчас у меня такой код
import io
from pandas import DataFrame
excel_writer = DataFrame()
excel_file = io.BytesIO()
excel_file.name = "table_excel.xlsx"
for history in ads:
item_title = history.get("item_title")
item_price = history.get("item_price")
excel_writer = excel_writer.append(
{
"Имя": item_title,
"Цена": item_price,
},
ignore_index=True,
)
excel_writer.to_excel(excel_file, encoding="utf-8", index=False)
Как мне его изменить чтобы работало с pandas.concat? Нужно изменить потому что получаю предупреждение 1 |
FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.