I am using the simple-salesforce python package with python 3. According to the documentation, I should be able to bulk update records using this syntax:
data = [{'Id': '0000000000AAAAA', 'Email': 'examplenew@example.com'}, {'Id':'0000000000BBBBB', 'Email': 'testnew@test.com'}]
sf.bulk.Contact.update(data)
However the instance of simple-salesforce that I implemented does not recognize
sf.bulk.Custom_Object__c
When I try to execute:
sf.bulk.Custom_Object__c.update(data)
I get this error:
AttributeError Traceback (most recent call last)
<ipython-input-126-b287358940fc> in <module>()
----> 1 sf.bulk.Custom__bject__c.update(data)
AttributeError: 'SFType' object has no attribute 'Custom_Object__c'
Has anyone else worked with the simple-salesforce python package and run into this issue before?