Skip to main content

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

  1. Run pip install hoarder

  2. Add ‘hoarder’ app to INSTALLED_APPS

  3. Add ‘hoarder.middleware.LoggingMiddleware’ and ‘hoarder.middleware.DeduplicationMiddleware’ to MIDDLEWARE_CLASSES

  4. Add the following to the beginning of head section in your base template:

    {% load hoarder_tags %}
    {% tracking_code %}
  5. 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

hoarder-0.0.6.tar.gz (6.0 kB view details)

Uploaded Source

File details

Details for the file hoarder-0.0.6.tar.gz.

File metadata

  • Download URL: hoarder-0.0.6.tar.gz
  • Upload date:
  • Size: 6.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for hoarder-0.0.6.tar.gz
Algorithm Hash digest
SHA256 ce3e1d1a4bc3954510aa08cd55a9a436f7fc8da004ba75b0304acbfca2f48c1b
MD5 96bddf322165ad3b3ba3e25966f0cd8e
BLAKE2b-256 0a577778dbac31bb8833d865eaa6b20ae850c7cd58e1e952b6f31b380e15f33f

See more details on using hashes here.

Supported by

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