I'm trying to connect my salesforce account with simple_salesforce through python.
im using this code
from simple_salesforce import Salesforce
sf = Salesforce(username='username', password='password', security_token='token', sandbox=True)
when i run the code i get this error:
simple_salesforce.exceptions.SalesforceAuthenticationFailed: UNKNOWN_EXCEPTION: Invalid byte 2 of 3-byte UTF-8 sequence.
according to documentation (https://pypi.org/project/simple-salesforce/) my code is the same as described.
any idea what i'm doing wrong?