Skip to main content

A Django application for integrating KISSmetrics customer analytics

Project description

# Django Kiss

A Django application for integrating KISSmetrics customer analytics.

KISSmetrics recommends developers record events using their JavaScript API, however it can be difficult to tell when to record an event using only client side code. For example, how does the client know when a form is successfully submitted?

Django Kiss uses the Django Session Framework to record events against a users session. The recorded in the session are then written out to an HTML page as JavaScript. The user's browser executes the JavaScript, firing the tracking requests to the KM API.

## Installation

* Install the package.

* Update your `settings.py`:

INSTALLED_APPS += ('kiss',)
MIDDLEWARE_CLASSES += ('kiss.middleware.KissMiddleware',)

KISS_API_KEY = 'YOUR_KM_API_KEY'
KISS_STORAGE = 'kiss.storage.session.SessionStorage'

* Django Kiss requires the Django Session Framework to be installed.

## Usage

Recording an event with Django Kiss is a two step process. First an event must be recorded against a request using `kiss.add_kiss`. Second, the user's browser must load a page with KM tracking JavaScript.

Record an event against the user's sessions:

import kiss

def view(request):
kiss.add_kiss(request, ['record', 'event_name'])
...

Include `kiss/core.html` in your base template to write out KM tracking JavaScripts and the events stored against the user's session:

{% include 'kiss/core.html' %}

To associate a particular request with an identity you can add a signal listener:

from django.contrib.auth import signals as auth_signals

@receiver(auth_signals.user_logged_in)
def user_logged_in_kiss(sender, **kwargs):
request = kwargs['request']
user = kwargs['user']
kiss.add_kiss(request, ['identify', user.email])
kiss.add_kiss(request, ['record', 'login'])

## Tests

To run the tests:

django-admin.py test kiss --settings=kiss.tests.test_settings

## License

MIT

Project details


Download files

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

Source Distribution

django_kiss-0.1.1.tar.gz (5.3 kB view details)

Uploaded Source

File details

Details for the file django_kiss-0.1.1.tar.gz.

File metadata

  • Download URL: django_kiss-0.1.1.tar.gz
  • Upload date:
  • Size: 5.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for django_kiss-0.1.1.tar.gz
Algorithm Hash digest
SHA256 1741cd95eb87f134a6b3413801253c526517704701b15f5fcaea2ac5bb75533d
MD5 2f21863b2e72eb2c214804f24ecf3a49
BLAKE2b-256 f84b5b706e73b573a23ade9ed870b44c0b2e3dc2b38a8d27dc2d8a3684f6ed7c

See more details on using hashes here.

Supported by

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