ENH: Add pd.read_soql()
for Salesforce data retrieval
#60966
Labels
Enhancement
IO Data
IO issues that don't fit into a more specific label
Needs Discussion
Requires discussion from core team before further action
Feature Type
Adding new functionality to pandas
Changing existing functionality in pandas
Removing existing functionality in pandas
Problem Description
I wish I could use Pandas to query Salesforce using SOQL (Salesforce Object Query Language) just as you do with relational databases using
pd.read_sql()
. Currently, to retrieve Salesforce data into a Pandas DataFrame, users must execute queries using simple_salesforce and manually convert results to DataFrames, which in case of multi-level queries can become quite inefficient (due to the nested format of the outputs of Salesforce REST API).Feature Description
The function would parallel
pd.read_sql()
and would look like this:Alternative Solutions
Alternative naming
Since
pd.read_sql()
is a convenience wrapper aroundread_sql_table
andread_sql_query
, a more "formally" correct name might beread_soql_query
, as there is no correspondingread_soql_table
. This would maintain a closer parallel to Pandas' SQL functions.However, I propose
read_soql
for brevity, and for consistency with other I/O functions such aspd.read_excel()
,pd.read_parquet()
,pd.read_feather()
,pd.read_orc()
etc.Additional Context
I am interested in developing this feature as I have already done some work towards its implementation.
The text was updated successfully, but these errors were encountered: