Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imankulov/django-plausible-proxy
Django application to proxy requests and send server-side events to Plausible Analytics.
https://github.com/imankulov/django-plausible-proxy
analytics django django-application plausible plausible-analytics proxy python web-analytics
Last synced: about 1 month ago
JSON representation
Django application to proxy requests and send server-side events to Plausible Analytics.
- Host: GitHub
- URL: https://github.com/imankulov/django-plausible-proxy
- Owner: imankulov
- License: mit
- Created: 2022-04-25T08:46:35.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-19T16:20:50.000Z (over 1 year ago)
- Last Synced: 2024-09-27T16:41:00.700Z (about 2 months ago)
- Topics: analytics, django, django-application, plausible, plausible-analytics, proxy, python, web-analytics
- Language: Python
- Homepage:
- Size: 72.3 KB
- Stars: 22
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
![Dev workflow](https://github.com/imankulov/django-plausible-proxy/workflows/dev%20workflow/badge.svg)
![PyPI](https://img.shields.io/pypi/v/django-plausible-proxy.svg)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/django-plausible-proxy.svg)
![PyPI - Status](https://img.shields.io/pypi/status/django-plausible-proxy.svg)
![PyPI - License](https://img.shields.io/pypi/l/django-plausible-proxy.svg)# Django Plausible Proxy
Django application to proxy requests and send server-side events to Plausible Analytics. Plays well with self-hosted and the managed cloud service.
## Proxying
Proxying allows a project owner concerned about missing data seeing a more complete picture. See [Adblockers and using a proxy for analytics](https://plausible.io/docs/proxy/introduction) for the detailed outline of the problem and solution.
When installed and configured in `settings.py` and `urls.py`, the app proxies the HTTP requests as such:
```
https:///js/script.js -> https://plausible.io/js/script.js
https:///api/event -> https://plausible.io/api/event
```## Server-side events
Track on the server side events that can't be tracked otherwise, such as API requests.
```python
from plausible_proxy import send_custom_event
...
send_custom_event(request, name="Register", props={"plan": "Premium"})
```## Installation
Install the package from PyPI.
```shell
pip install django-plausible-proxy
```Configure Django setting in the `settings.py`.
```python
# Register the app to enable {% plausble %} templatetag.
INSTALLED_APPS = [
# ...
"plausible_proxy"
# ...
]# Optionally, define a default value for Plausible domain to provide a default value
# for the Plausible domain and the `send_custom_event()` function.
PLAUSIBLE_DOMAIN = "yourdomain.com"# Optionally, define the plausible endpoint that you would like to post to.
# This is useful if you are self-hosting plausible.
PLAUSIBLE_BASE_URL = "https://plausible.io"# Optionally, define the value for the script prefix. The default value is "js". When
# you include the script to the page with the {% plausible %} templatetag, it becomes
# available as "". E.g.,
# ""
#
# Overriding PLAUSIBLE_SCRIPT_PREFIX is helpful to avoid clashes with another script
# of your site that may become available under the same name.PLAUSIBLE_SCRIPT_PREFIX = "plsbl/js"
# Optionally, provide a timeout for the connection to your plausible endpoint in
# seconds. Defaults to 1 second. Adjust to lower values in case you can't trust your
# infrastructure to consistently deliver low load times and you don't care as much
# about consistent analytics.
PLAUSIBLE_REQUEST_TIMEOUT = 1
```Update `urls.py`.
```python
from django.urls import include, pathurlpatterns = [
# ...
path("", include("plausible_proxy.urls")),
# ...
]
```Update your base HTML template to include the plausible templatetag.
```html
{% load plausible %}
...
{% plausible script='script.js' %}
```## API reference
### **`{% plausible %}`**
A templatetag to include the Plausible analytics script to the page.
Arguments:
- `domain` (default to `settings.PLAUSIBLE_DOMAIN`): defines the `data-domain` parameter, the is the domain for the Plausible analytics.
- `script` (default to `script.js`): defines the Plausible script to use. See [Script extensions for enhanced measurement](https://plausible.io/docs/script-extensions) for the list of alternative script names and what they can track for you.Usage example:
```html
{% load plausible %}
...
{% plausible domain='example.com' script='script.outbound-links.js' %}
```### `plausible_proxy.services.`**`send_custom_event()`**
end a custom event to Plausible and return successful status.
See [Plausible events API](https://plausible.io/docs/events-api) for more information
Arguments:
- `request` (HttpRequest): Original Django HTTP request. Will be used to create X-Forwarded-For and User-Agent headers.
- `name` (string): Name of the event. Can specify `pageview` which is a special type of event in Plausible. All other names will be treated as custom events.
- `domain` (optional string): Domain name of the site in Plausible. The value from settings.PLAUSIBLE_DOMAIN is used by default.
- `url` (optional string): URL of the page where the event was triggered. If not provided, the function extracts the URL from the request. If the URL contains UTM parameters, they will be extracted and stored. If URL is not set, will be extracted from the request.
- `referrer` (optional string): Referrer for this event.
- `screen_width` (optional integer): Width of the screen.
- `props` (optional dict): Custom properties for the event. See: [Using custom props](https://plausible.io/docs/custom-event-goals#using-custom-props).Returns: True if request was accepted successfully.
Example:
```python
def vote(request, candidate_id):
candidate = get_object_or_404(Candidate, pk=candidate_id)
send_custom_event(request, 'vote', props={"candidate": candidate.full_name})
...
```## Contributors