Skip to main content

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

  1. A viewer fingerprint is computed using:

    • authenticated user ID or session key,
    • IP address,
    • User-Agent.
  2. For each page (or logical page group called a scope), an impression counter is stored in cache.

  3. If the number of impressions exceeds the configured threshold within the time window, ads are temporarily blocked for that viewer.

  4. Ads are automatically unblocked after the configured TTL.

  5. 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 add and incr:

    • 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

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

ads_throttle-0.1.3.tar.gz (13.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ads_throttle-0.1.3-py3-none-any.whl (19.5 kB view details)

Uploaded Python 3

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

Hashes for ads_throttle-0.1.3.tar.gz
Algorithm Hash digest
SHA256 1553eca71f53eb0122632b1e1eec6a0e6a020227b02786a48bdd3e56d3514063
MD5 9df21993fefaedf4ad7a65eedc78b50f
BLAKE2b-256 a6604948982885a8ad3055619b39c5633b0b2d4533a020513a119d171a7a2e50

See more details on using hashes here.

File details

Details for the file ads_throttle-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for ads_throttle-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 aa70ff6b5c8787fc8c06c253ab5be4793641e9e579ad7b81a98c157f4c00e927
MD5 e3362776ac38e19efbb17664a753f48f
BLAKE2b-256 a167ef73894bc3edf52908356cacae4dd4916785ae5d89c8edf3fe5786fb212e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page