I am trying to load bulk data from csv file to Salesforce using python. when i am trying to create single record in Salesforce it's working fine
from simple_salesforce import Salesforce
from simple_salesforce import SFType
sfdc = Salesforce(username='username', password='pass', security_token='s_token')
sfdc.testing__c.create({'tt__c': 'name', 'ttmobile__c': '0000000015', 'type': 'testing__c'})
but i want to load bulk data
Take a look at different python library SQLForce