Skip to content

A Django app for managing product experiments and measuring their results based on Facebook's planout testing library

License

Notifications You must be signed in to change notification settings

adamhaney/django-planout-experiments

Repository files navigation

django-planout-experiments

https://travis-ci.org/adamhaney/django-planout-experiments.svg?branch=master

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'^experiments/', include(planout_experiments_urls)),
    ...
]

Features

  • Allows creation of Experiment model with admin definable Goals

  • Includes models for tracking events that take place related to users under test

  • Allows designing experimental groups using Facebook's Planout Library[1]

    [1]

    https://facebook.github.io/planout/

Running Tests

Does the code actually work?

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

Credits

Tools used in rendering this package:

About

A Django app for managing product experiments and measuring their results based on Facebook's planout testing library

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •