Simple Google Analytics integration for Django.
Project description
# django-ganalytics
Simple Google Analytics integration for Django.
## Meta
* author: Randall Degges
* email: r@rdegges.com
* status: maintained, in development
[![Build Status](https://secure.travis-ci.org/rdegges/django-ganalytics.png?branch=master)](http://travis-ci.org/rdegges/django-ganalytics)
## Purpose
Honestly, all the other Google Analytics Django apps suck. All I want to do is
put my Google Analytics code in my ``settings.py`` file, and use a simple
template tag to render the Google Analytics asynchronous javascript code,
damnet!
Unfortunately, all the existing solutions don't do this, and that pisses me
off!
![squint](https://github.com/rdegges/django-ganalytics/raw/master/assets/squint.png)
## Installation and Usage
Anyway, let's install this bitch! The first thing you'll want to do is run:
``` bash
$ pip install django-ganalytics
```
Next, modify your ``settings.py`` file, and add your Google Analytics code
(usually something like ``UA-XXXXXXXX-XX``), as well as put
``ganalytics`` in your ``INSTALLED_APPS``:
``` python
# settings.py
INSTALLED_APPS = (
# ...
'ganalytics',
)
GANALYTICS_TRACKING_CODE = 'UA-XXXXXXXX-XX'
```
Now, to actually render your Google Analytics asynchronous javascript code,
edit your desired Django template (I like to do this in my ``base.html``
template), and add the following:
``` html
{% load ganalytics %}
<!--- ... -->
<head>
{% ganalytics %}
</head>
<!--- ... -->
```
When Django processes your template, it'll replace ``{% ganalytics %}``
with:
``` html
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', '{{ GANALYTICS_TRACKING_CODE }}', 'auto');
ga('send', 'pageview');
</script>
```
Easy, right?
Simple Google Analytics integration for Django.
## Meta
* author: Randall Degges
* email: r@rdegges.com
* status: maintained, in development
[![Build Status](https://secure.travis-ci.org/rdegges/django-ganalytics.png?branch=master)](http://travis-ci.org/rdegges/django-ganalytics)
## Purpose
Honestly, all the other Google Analytics Django apps suck. All I want to do is
put my Google Analytics code in my ``settings.py`` file, and use a simple
template tag to render the Google Analytics asynchronous javascript code,
damnet!
Unfortunately, all the existing solutions don't do this, and that pisses me
off!
![squint](https://github.com/rdegges/django-ganalytics/raw/master/assets/squint.png)
## Installation and Usage
Anyway, let's install this bitch! The first thing you'll want to do is run:
``` bash
$ pip install django-ganalytics
```
Next, modify your ``settings.py`` file, and add your Google Analytics code
(usually something like ``UA-XXXXXXXX-XX``), as well as put
``ganalytics`` in your ``INSTALLED_APPS``:
``` python
# settings.py
INSTALLED_APPS = (
# ...
'ganalytics',
)
GANALYTICS_TRACKING_CODE = 'UA-XXXXXXXX-XX'
```
Now, to actually render your Google Analytics asynchronous javascript code,
edit your desired Django template (I like to do this in my ``base.html``
template), and add the following:
``` html
{% load ganalytics %}
<!--- ... -->
<head>
{% ganalytics %}
</head>
<!--- ... -->
```
When Django processes your template, it'll replace ``{% ganalytics %}``
with:
``` html
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', '{{ GANALYTICS_TRACKING_CODE }}', 'auto');
ga('send', 'pageview');
</script>
```
Easy, right?
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-ganalytics-0.7.0.tar.gz
(26.2 kB
view details)
Built Distribution
File details
Details for the file django-ganalytics-0.7.0.tar.gz
.
File metadata
- Download URL: django-ganalytics-0.7.0.tar.gz
- Upload date:
- Size: 26.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d0ff1bf7be452b76e9117427a09f00bc9bcf75c2dada0837673142e3e850b6fa |
|
MD5 | 71c4019373b5c1747b92230f27b652e7 |
|
BLAKE2b-256 | 231856d619e5de754eb2aaa79a62ebdba3f273bf71191e6d806864914f852208 |
File details
Details for the file django_ganalytics-0.7.0-py2.py3-none-any.whl
.
File metadata
- Download URL: django_ganalytics-0.7.0-py2.py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4ecefb6a70a90fd18f155235b6f14f1a9af5819dc804b46d16030863e03a746 |
|
MD5 | ebbb91c8bdbf654e201aae5b03c072f8 |
|
BLAKE2b-256 | c2a937803f7654515ef725f33bedc92478a48b13db2cdbf3669b68f2693814d3 |