A wrapper around the simple-salesforce module to ease making REST API calls to SFDC
####Import from the class object
from logglyrestsfdc import sfdcrest####Create a client by instantiating a rest based SFDC client
sf = sfdcrest.sfdcrestClient(<instance>) instance can be prod or sandboxNote: It expects a file with all the required SFDC credentials in the file config.py.
####To Read an Opportunity by a custom field
sf.execute('get-opportunity',<custom-field-name>,<custom-field-name-value>)sf.execute('update-opportunity',<Opportunity-ID>,<data-dict>):