Hi,
I'm trying to update table in confluence page from below code.
If there are any images in the table that are uploaded(to table) manually are getting updated / over written as "NaN" after calling update_existing_page()
table = pd.read_html(page_content)
table = table[0]
table_df = pd.DataFrame(table)
test_data = {
'Date' : [str(date.today())],
'Comments' : 'Uppit',
}
html = table.to_html(index=False)
conf.update_existing_page(
page_id,
page_title,
body=html,
)
Hi,
I'm trying to update table in confluence page from below code.
If there are any images in the table that are uploaded(to table) manually are getting updated / over written as "NaN" after calling
update_existing_page()