Django app to mitigate ad network ban risk by throttling suspicious ad impressions.
Project description
ads_throttle — Django ad impression throttling to reduce ad network ban risk
ads_throttle is a Django application that limits how often ads are shown to the same viewer within a configurable time window and allows manual overrides via the Django admin interface.
It is designed to reduce the risk of ad network bans caused by abnormal or suspicious ad impression patterns (for example, bot traffic or third-party abuse).
How it works
-
A viewer fingerprint is computed using:
- authenticated user ID or session key,
- IP address,
- User-Agent.
-
For each page (or logical page group called a scope), an impression counter is stored in cache.
-
If the number of impressions exceeds the configured threshold within the time window, ads are temporarily blocked for that viewer.
-
Ads are automatically unblocked after the configured TTL.
-
Administrators can force show or force block ads for specific users, IPs, viewer IDs, or page scopes via Django Admin.
Ads are throttled — users and traffic are not blocked.
Installation
pip install ads-throttle
Add the app to Django:
# settings.py
INSTALLED_APPS = [
# ...
"ads_throttle",
]
Optional: global context processor
Use this option when ads are rendered on most pages:
TEMPLATES = [
{
"OPTIONS": {
"context_processors": [
# ...
"ads_throttle.context_processors.ads",
],
},
},
]
Run migrations:
python manage.py migrate
Usage
Templates (with context processor)
Best when ads appear on most pages:
{% if show_ads %}
<!-- ad block -->
{% endif %}
Templates (without context processor)
Recommended when ads appear only on some pages:
{% load ads_throttle_tags %}
{% show_ads as show_ads %}
{% if show_ads %}
<!-- ad block -->
{% endif %}
Or:
{% if request|should_show_ads %}
<!-- ad block -->
{% endif %}
When using template tags or filters, the context processor is not required.
Python (custom placement logic)
from ads_throttle.throttling import should_show_ads
if should_show_ads(request, scope="/landing/"):
...
scope allows multiple URLs (for example, a landing page and its variants) to share the same throttling rules.
Requirements
-
Django database (PostgreSQL, MySQL, SQLite for development).
-
Cache backend supporting
addandincr:- Redis (recommended),
- Memcached,
- Django database cache (development only).
Security and privacy
- IP addresses are stored only as SHA256 hashes.
- Viewer fingerprints are never stored in raw form.
- No external tracking or third-party services are used.
What this package is NOT
- It is not an ad fraud detection system.
- It does not analyze clicks or conversions.
- It does not attempt to bypass ad network policies.
It is a preventive throttling mechanism that limits ad impressions before abnormal patterns escalate into enforcement actions.
Links
- Source code: https://github.com/frollow/throttle
- Documentation: https://github.com/frollow/throttle/tree/master/docs
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ads_throttle-0.1.3.tar.gz.
File metadata
- Download URL: ads_throttle-0.1.3.tar.gz
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.31
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1553eca71f53eb0122632b1e1eec6a0e6a020227b02786a48bdd3e56d3514063
|
|
| MD5 |
9df21993fefaedf4ad7a65eedc78b50f
|
|
| BLAKE2b-256 |
a6604948982885a8ad3055619b39c5633b0b2d4533a020513a119d171a7a2e50
|
File details
Details for the file ads_throttle-0.1.3-py3-none-any.whl.
File metadata
- Download URL: ads_throttle-0.1.3-py3-none-any.whl
- Upload date:
- Size: 19.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.31
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa70ff6b5c8787fc8c06c253ab5be4793641e9e579ad7b81a98c157f4c00e927
|
|
| MD5 |
e3362776ac38e19efbb17664a753f48f
|
|
| BLAKE2b-256 |
a167ef73894bc3edf52908356cacae4dd4916785ae5d89c8edf3fe5786fb212e
|