django-planout-experiments

https://badge.fury.io/py/django-planout-experiments.svg https://travis-ci.org/adamhaney/django-planout-experiments.svg?branch=master https://codecov.io/gh/adamhaney/django-planout-experiments/branch/master/graph/badge.svg

A Django application that uses Facebook’s Planout library to manage product experiments and track outcomes

Documentation

The full documentation is at https://django-planout-experiments.readthedocs.io.

Quickstart

Install django-planout-experiments:

pip install django-planout-experiments

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'planout_experiments.apps.PlanoutExperimentsConfig',
    ...
)

Add django-planout-experiments’s URL patterns:

from planout_experiments import urls as planout_experiments_urls


urlpatterns = [
    ...
    url(r'^', include(planout_experiments_urls)),
    ...
]

Features

  • TODO

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package: