如何将SalesForce数据导入Python Panda数据帧

问题描述 投票:0回答:1

目前,我们正在将SalesForce数据转换为CSV文件,并使用read_csv,to_csv方法在Pandas中读取此CSV文件。我们是否有任何其他方法可以将数据从SalesForce获取到pandas数据帧。

python-3.x pandas salesforce soql
1个回答
2
投票

使用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'])
© www.soinside.com 2019 - 2024. All rights reserved.