我有一个数据框,存储商店名称和每日销售计数。我正在尝试使用下面的 Python 脚本将其插入到 Salesforce 中。
然而,我得到了以下错误:
TypeError: Object of type 'int64' is not JSON serializable
下面是数据框架的视图。
Storename,Count
Store A,10
Store B,12
Store C,5
我使用以下代码将其插入到 Salesforce。
update_list = []
for i in range(len(store)):
update_data = {
'name': store['entity_name'].iloc[i],
'count__c': store['count'].iloc[i]
}
update_list.append(update_data)
sf_data_cursor = sf_datapull.salesforce_login()
sf_data_cursor.bulk.Account.update(update_list)
当执行上面的最后一行时,我得到了错误。
我该怎么补救?