如何将SalesForce数据导入Python Panda数据帧
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将SalesForce数据导入Python Panda数据帧相关的知识,希望对你有一定的参考价值。
目前,我们正在将SalesForce数据转换为CSV文件,并使用read_csv,to_csv方法在Pandas中读取此CSV文件。我们是否有任何其他方法可以将数据从SalesForce获取到pandas数据帧。
答案
使用Python - 您可以下载名为Simple Salesforce的包并编写SOQL查询以返回数据
https://github.com/simple-salesforce/simple-salesforce
以下是如何执行此操作的示例:
from simple_salesforce import Salesforce
sf = Salesforce(username='<enter username>', password='<enter password>',
security_token = '<enter your access token from your profile>')
a_query= pd.DataFrame(sf.query(
"SELECT Name, CreatedDate FROM User")['records'])
以上是关于如何将SalesForce数据导入Python Panda数据帧的主要内容,如果未能解决你的问题,请参考以下文章
如何将现有 iCloud 联系人导入 Salesforce。
将contact/Lead导入到SalesForce Campaign