All Projects β†’ zapier β†’ Django Drip

zapier / Django Drip

Licence: mit
πŸ’§ Use Django admin to manage drip campaign emails using querysets on Django's User model.

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Django Drip

Todomvc Mithril
TodoMVC app using Mithril.js with CoffeeScript and Brunch
Stars: ✭ 15 (-97.58%)
Mutual labels:  featured
Pan Os Python
The PAN-OS SDK for Python is a package to help interact with Palo Alto Networks devices (including physical and virtualized Next-generation Firewalls and Panorama). The pan-os-python SDK is object oriented and mimics the traditional interaction with the device via the GUI or CLI/API.
Stars: ✭ 194 (-68.71%)
Mutual labels:  featured
Pygogo
A Python logging library with superpowers
Stars: ✭ 265 (-57.26%)
Mutual labels:  featured
Splunk Apps
Palo Alto Networks App for Splunk leverages the data visibility provided by Palo Alto Networks next-generation firewalls and endpoint security with Splunk's extensive investigation and visualization capabilities to deliver an advanced security reporting and analysis tool.
Stars: ✭ 63 (-89.84%)
Mutual labels:  featured
Csv2ofx
A Python library and command line tool for converting csv to ofx and qif files
Stars: ✭ 133 (-78.55%)
Mutual labels:  featured
Zapier Platform Cli
πŸ’» Build Zapier integrations and test locally using the JavaScript tools you already know.
Stars: ✭ 249 (-59.84%)
Mutual labels:  featured
Graphql Multipart Request Spec
A spec for GraphQL multipart form requests (file uploads).
Stars: ✭ 622 (+0.32%)
Mutual labels:  featured
Email Reply Parser
βœ‰οΈ Email reply parser library for Python
Stars: ✭ 388 (-37.42%)
Mutual labels:  featured
Fili
Easily make RESTful web services for time series reporting with Big Data analytics engines like Druid and SQL Databases.
Stars: ✭ 151 (-75.65%)
Mutual labels:  featured
react-element-portal
Blend React into your exising site by rendering elements inline, targeting an element by id.
Stars: ✭ 33 (-94.68%)
Mutual labels:  featured
Apollo Upload Client
A terminating Apollo Link for Apollo Client that allows FileList, File, Blob or ReactNativeFile instances within query or mutation variables and sends GraphQL multipart requests.
Stars: ✭ 1,176 (+89.68%)
Mutual labels:  featured
Riko
A Python stream processing engine modeled after Yahoo! Pipes
Stars: ✭ 1,571 (+153.39%)
Mutual labels:  featured
ongeza
An automated way to follow the Semantic Versioning Specification
Stars: ✭ 36 (-94.19%)
Mutual labels:  featured
Graphql Upload
Middleware and an Upload scalar to add support for GraphQL multipart requests (file uploads via queries and mutations) to various Node.js GraphQL servers.
Stars: ✭ 1,071 (+72.74%)
Mutual labels:  featured
Meza
A Python toolkit for processing tabular data
Stars: ✭ 374 (-39.68%)
Mutual labels:  featured
Fake Tag
A fake template literal tag to trick syntax highlighters, linters and formatters into action.
Stars: ✭ 22 (-96.45%)
Mutual labels:  featured
Openui5
OpenUI5 lets you build enterprise-ready web applications, responsive to all devices, running on almost any browser of your choice.
Stars: ✭ 2,542 (+310%)
Mutual labels:  featured
Graphql React
A GraphQL client for React using modern context and hooks APIs that is lightweight (< 3.5 KB size limited) but powerful; the first Relay and Apollo alternative with server side rendering.
Stars: ✭ 611 (-1.45%)
Mutual labels:  featured
Tensorflowonspark
TensorFlowOnSpark brings TensorFlow programs to Apache Spark clusters.
Stars: ✭ 3,748 (+504.52%)
Mutual labels:  featured
ud-basic-webdev-setup
Bei diesem Repository handelt es sich um meine "Test/Entwicklungs Umgebung" fΓΌr alle meine YouTube Tutorials. Es basiert auf Gulp, TypeScript/JS ES6+ und SASS
Stars: ✭ 52 (-91.61%)
Mutual labels:  featured

Django Drip

Build Status

Drip campaigns are pre-written sets of emails sent to customers or prospects over time. Django Drips lets you use the admin to manage drip campaign emails using querysets on Django's User model.

We wrote this specifically to scratch an itch at our startup Zapier. It currently runs all of our drip campaigns.

Read the docs or check out a demo.

Installing:

We highly recommend using pip to install django-drip, the packages are regularly updated with stable releases:

pip install django-drip

Next, you'll want to add drip to your INSTALLED_APPS in settings.py.

INSTALLED_APPS = (
    'django.contrib.contenttypes',
    'django.contrib.comments',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.admin',

    # Your favorite apps

    'drip',
)

Don't forget to add DRIP_FROM_EMAIL to settings.py, or else we will fall back to EMAIL_HOST_USER.

Finally, be sure to run python manage.py syncdb or python manage.py migrate drip to set up the necessary database tables.

python manage.py syncdb
# or...
python manage.py migrate drip

what the admin looks like what the admin looks like for the timeline

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].