Skip to main content

Django wrapper for the ExactTarget FuelSDK.

Project description

django-fuelsdk
==============

ExactTarget FuelSDK wrapper for Django.

![Travis CI Build Status](https://travis-ci.org/bradjasper/django-jsonfield.png?branch=master)

Install
=======

**Install Dependencies**
```bash
pip install -r requirements.txt
```

**Add To INSTALLED_APPS**
```python
INSTALLED_APPS = [
# ...
django_fuelsdk,
]
```

**Add Settings**
```python
EXACT_TARGET_CLIENT_ID = 'xxxx'
EXACT_TARGET_CLIENT_SECRET = 'xxxx'
# https://code.exacttarget.com/question/there-any-cetificrate-install-our-server-access-et-api
EXACT_TARGET_WSDL_URL = 'https://webservice.exacttarget.com/etframework.wsdl'
```


Usage
=====

```python
from django_fuelsdk.fuel import FuelClient

f = FuelClient()

# Send a triggered send to a specific subscriber (used for transactional email)
f.send('Welcome', 'test@example.com', {'variable': 'test'})

# Add a subscriber
# Note: The underlying ExactTarget API throws an error when trying to
# add a subscriber that already exists. This method will silence that error,
# making add_subscriber idempotent.
f.add_subscriber('test@example.com', {'variable': 'test'})

# Any error returned by the API will cause a django_fuelsdk.fuel.FuelApiError
# exception to be raised.
f.send('Not an Email', 'test@example.com', {})
```

Project details


Release history Release notifications | RSS feed

This version

0.2

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-fuelsdk-0.2.tar.gz (4.6 kB view details)

Uploaded Source

File details

Details for the file django-fuelsdk-0.2.tar.gz.

File metadata

File hashes

Hashes for django-fuelsdk-0.2.tar.gz
Algorithm Hash digest
SHA256 6b84a1ab75fedc6b6418cccef8915df748c7f0917e2293eac87125d43c0e425a
MD5 126d1ccbca1183d903662f1fc120cde9
BLAKE2b-256 bb383d2b8f4f9a41294476fa6e11a725e783d686514094949da58a071b28e948

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page