Django analytics kit for the data-obsessed.
Project description
Django analytics kit for the data-obsessed.
Hoarder in an event tracking API for Django that supports multiple analytics backends: KISSMetrics, Google Analytics, local MongoDB storage.
Hoarder is for you if:
You want to use multiple web analytics tools without duplicating code for each of them
You want to be able to swap analytics packages without changing your code
You want to have a local copy of all your analytics data
Installation
Run pip install hoarder
Add ‘hoarder’ app to INSTALLED_APPS
Add ‘hoarder.middleware.LoggingMiddleware’ and ‘hoarder.middleware.DeduplicationMiddleware’ to MIDDLEWARE_CLASSES
Add the following to the beginning of head section in your base template:
{% load hoarder_tags %} {% tracking_code %}
Specify the backends you want to use in HOARDER_BACKENDS settings variable
Supported backends
hoarder.backends.LogBackend - just outputs all events to log for debug purposes
hoarder.mongo.MongoBackend - stores all events in a local MongoDB database
hoarder.backends.KISSMetricsBackend - KISSMetrics integration
hoarder.ga.GABackend - Google Analytics integration
Settings
HOARDER_BACKENDS - list of enabled backends
HOARDER_MONGO_DATABASE - for Mongo backend, name of the database to use
KISSMETRICS_API_KEY - for KISSMetrics backend, the API key from your KISSMetrics account
Usage
Registering an event in view:
from hoarder import register_request_event ... register_request_event(request, 'signed up', {'plan level' : 'Basic'})
Registering an event outside of a view:
from hoarder import register_request_event ... register_user_event(user, 'billed', {'amount' : '49.99'})
Labeling current visitor:
from hoarder import label_visitor, ... label_visitor(request, 'Nice person')
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
Built Distribution
Hashes for hoarder-0.0.3.linux-x86_64.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c60be5f29fec6ff1a4a7d95c74f23d8f8e6adeee8cc7ec340927b4978f6b870 |
|
MD5 | 3ee87f1defdc6aebefcea07dc78661a1 |
|
BLAKE2b-256 | 2657527fa692ac785b6d803e6e743b0981d316343f041cef3b66bee321924a55 |