Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Salesforce by (11.9k points)

I am using the following code to extract data from Salesforce using beatbox python API.

import beatbox
sf_username = "[email protected]"
sf_password = "123"
sf_api_token = "ABC"
def extract():
   sf_client = beatbox.PythonClient()
   password = str("%s%s" % (sf_password, sf_api_token))
   sf_client.login(sf_username, password)
   lead_qry = "SELECT CountryIsoCode__c,LastModifiedDate FROM Country limit 10"
   records = sf_client.query(lead_qry)
   output = open('output','w')
   for record in records:
     output.write('\t'.join(record.values())
   output.close()
if _name_ == '__main__':
 extract()

But this is what I get in the output. How to get the raw data, just the values I see in the workbench. I don't want to parse each datatype and get the raw value.

Actual Output:

[{'LastModifiedDate': datetime.datetime(2012, 11, 2, 9, 32, 4), 'CountryIsoCode_c': 'AU', 'type': 'Country_c', 'Id': ''}, {'LastModifiedDate': datetime.datetime(2012, 8, 18, 14, 0, 21), 'CountryIsoCode_c': 'LX', 'type': 'Country_c', 'Id': ''}, {'LastModifiedDate': datetime.datetime(2012, 11, 12, 15, 20, 11), 'CountryIsoCode_c': 'AE', 'type': 'Country_c', 'Id': ''}, {'LastModifiedDate': datetime.datetime(2012, 11, 12, 15, 20, 29), 'CountryIsoCode_c': 'AR', 'type': 'Country_c', 'Id': ''}, {'LastModifiedDate': datetime.datetime(2012, 11, 2, 9, 32, 4), 'CountryIsoCode_c': 'AT', 'type': 'Country_c', 'Id': ''}, {'LastModifiedDate': datetime.datetime(2012, 11, 2, 9, 32, 4), 'CountryIsoCode_c': 'BE', 'type': 'Country_c', 'Id': ''}, {'LastModifiedDate': datetime.datetime(2012, 11, 12, 15, 21, 28), 'CountryIsoCode_c': 'BR', 'type': 'Country_c', 'Id': ''}, {'LastModifiedDate': datetime.datetime(2012, 11, 12, 15, 21, 42), 'CountryIsoCode_c': 'CA', 'type': 'Country_c', 'Id': ''}, {'LastModifiedDate': datetime.datetime(2012, 11, 12, 15, 36, 18), 'CountryIsoCode_c': 'CH', 'type': 'Country_c', 'Id': ''}, {'LastModifiedDate': datetime.datetime(2012, 11, 12, 15, 35, 8), 'CountryIsoCode_c': 'CL', 'type': 'Country_c', 'Id': ''}] 

Expected Output:

AU 2012-11-02T09:32:04Z
LX 2012-08-18T14:00:21Z

1 Answer

0 votes
by (32.1k points)
edited by

If you work with table data you should use Pandas library

Here is an example:

import pandas as pd 

from datetime import datetime

import beatbox

service = beatbox.PythonClient()  

service.login('login_here', 'creds_here')

query_result = service.query("SELECT Name, Country, CreatedDate FROM Lead limit 5")  # CreatedDate is a datetime object

records = query_result['records']      # records is a list of dictionaries

records is a list of dictionaries as you mentioned before

df = pd.DataFrame(records)

print (df)

     Country         CreatedDate Id              Name  type

0  United States 2011-05-26 23:39:58       qwe qwe      Lead

1         France 2011-09-01 08:45:26       qwe qwe      Lead

2         France 2011-09-01 08:37:36       qwe qwe      Lead

3         France 2011-09-01 08:46:38       qwe qwe      Lead

4         France 2011-09-01 08:46:57       qwe qwe      Lead

Now you have table-style Dataframe object. You can index multiple columns and rows:

df['CreatedDate']

0   2011-05-26 23:39:58

1   2011-09-01 08:45:26

2   2011-09-01 08:37:36

3   2011-09-01 08:46:38

4   2011-09-01 08:46:57

 If you are planning to break into the Salesforce domain, and are not sure where to start, I would recommend you start by enrolling yourself in a Salesforce course from Intellipaat!

Browse Categories

...