FuelSDK-Python icon indicating copy to clipboard operation
FuelSDK-Python copied to clipboard

FuelSDK for python

Results 77 FuelSDK-Python issues
Sort by recently updated
recently updated
newest added

I have a simple scrip that downloads all of the HTML in our account and writes it to individual files. However, it doesn't seem to be able to access emails...

Is the FuelSDK-Python impacted by the upcoming TLS 1.0 disablement ? [https://help.salesforce.com/articleView?id=000270626&language=en_US&type=1](url)

This change seem only to regard Data Extension rows: https://github.com/ExactTarget/FuelSDK-Python/commit/794930057ee4558519eed1931015cb1fec79a32a It would be nice with support for bulk operations on other object types as well, such as subscribers.

In the schema, contains appears to be a valid SimpleOperator: https://github.com/ExactTarget/FuelSDK-Python/blob/855ca7d31788004c67dcc20b7ed9e951d707c008/FuelSDK/ExactTargetWSDL.xml#L490-L515 but the code: ``` import FuelSDK client = FuelSDK.ET_Client( params=dict(clientid=CLIENT_ID, clientsecret=CLIENT_SECRET) ) event = FuelSDK.ET_Email() event.auth_stub = client event.search_filter...

- Patched method that caused SOAP calls for Email to fail due to __ in the WSDL file. - Refactored version getting. - Increased version from 1.1.1 to 1.1.2

Trying to install **0.9.4** version, but got with error "No 0.9.4 version" ![screen shot 2017-03-20 at 2 27 48 pm](https://cloud.githubusercontent.com/assets/22693126/24122565/891527f2-0d79-11e7-96ba-a02888c0e4fa.png)

We are trying to run the calls found under https://code.exacttarget.com/apis-sdks/fuel-sdks/index.html. I am using the python examples from the website and using the below version of the libraries to send request...

is there a reason, this change has been made. Im running a project which uses Flask-JWT==0.3.2 and it has the following requirement flask-jwt 0.3.2 has requirement PyJWT=1.4.0, but you'll have...

As described in the Salesforce documentation ( [https://help.salesforce.com/articleView?id=mc_as_bounces.htm&type=5](https://help.salesforce.com/articleView?id=mc_as_bounces.htm&type=5) ), Bounce event contains those following info : "ClientID","SendID","SubscriberKey","SubscriberID","ListID","EventDate","EventType","BounceCategory","SMTPCode","BounceReason","BatchID","TriggeredSendExternalKey". I want to get a dict with those columns, but when I specify...