mirror of
https://github.com/jazzband/django-analytical.git
synced 2026-05-02 04:34:43 +00:00
* Added Chartbeat. * Added settings context processor. * Added identification. * Prepared events. * Updated tests.
22 lines
624 B
Python
22 lines
624 B
Python
"""
|
|
Analytics service integration for Django
|
|
========================================
|
|
|
|
The django-analytical application integrates analytics services into a
|
|
Django_ project. See the ``docs`` directory for more information.
|
|
|
|
.. _Django: http://www.djangoproject.com/
|
|
"""
|
|
|
|
__author__ = "Joost Cassee"
|
|
__email__ = "joost@cassee.net"
|
|
__version__ = "0.1.0alpha"
|
|
__copyright__ = "Copyright (C) 2011 Joost Cassee"
|
|
__license__ = "MIT License"
|
|
|
|
try:
|
|
from collections import namedtuple
|
|
except ImportError:
|
|
namedtuple = lambda name, fields: lambda *values: values
|
|
|
|
Property = namedtuple('Property', ['num', 'name', 'value'])
|