Track external links with a signal on click.
Project description
Captures clicks on external links, and invokes a callback (signal).
Useful for tracking outbound links.
pip install django-external-urls
Settings:
Add to settings.py:
INSTALLED_APPS = ( 'external_urls', )
Add to url.py:
urlpatterns = patterns('', url(r'', include('external_urls.urls')), )
Usage:
The templates can be used as follows:
{% load external_urls %} {% external_url object.website %} {% external_url "http://example.com/" %}
Sends a Signal, external_link:
from external_links.signals import external_click from django.dispatch import receiver @receiver(external_click) def my_callback(sender, url, ip): print("tracked click to {} from {}".format(url, ip))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-external-urls-0.3.tar.gz
.
File metadata
- Download URL: django-external-urls-0.3.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
efbc20c7773486c57702042c2dccf9799bade21dee5ef8e8745a54dc2f13fb0d
|
|
MD5 |
fdc8345a2c3620ea2db2682d566c121a
|
|
BLAKE2b-256 |
a2a5cc9b86e2abd2735fccbd13bac66902f9be0749183167f99438084f7cee3d
|