Skip to main content

Publish page-level CSS/JS assets from Wagtail CMS to static storage with optional Tailwind CSS JIT compilation

Project description

wagtail-asset-publisher

PyPI version Downloads Published on Django Packages CI codecov License: BSD-3-Clause

Automatically extract, build, and publish page-level CSS/JS assets from Wagtail CMS StreamField content to static storage -- with zero page model changes.

Philosophy

"Wagtail is designed to produce the kind of sites that designers and front-end developers were already making." -- The Zen of Wagtail

Modern Wagtail sites often include per-page styling -- a landing page with a unique hero, an article with custom typography, or a campaign page with brand-specific CSS. These inline <style> and <script> tags live naturally inside StreamField blocks, but they carry a cost: no caching, no CDN benefit, and duplicated bytes on every page load.

wagtail-asset-publisher solves this transparently. When a page is published, inline assets are automatically extracted from StreamField content, built into static files with content-hashed filenames, and served via <link>/<script src> references. No page model changes. No template tags. No deployment pipeline.

Write inline styles in StreamField blocks. Publish. Assets are extracted and served as static files automatically.

Key Features

  • Zero-config -- Add to INSTALLED_APPS, add middleware, run migrations. No mixin, no template tags, no model changes
  • Full-page extraction -- By default, the full rendered page HTML is used for asset extraction, capturing inline <style> and <script> tags defined anywhere in Django templates, not just StreamField blocks (EXTRACT_FROM_TEMPLATES, default: True)
  • Automatic extraction -- Inline <style> and <script> tags are extracted at publish time
  • Content-hashed filenames -- Automatic cache busting: {page_id}-{hash}.css
  • Middleware-driven -- At render time, matched inline tags are stripped and replaced with static file references
  • SHA-256 content matching -- Only strips tags whose content hash matches published assets; base template tags are untouched
  • Script loading attribute preservation -- defer, async, and type="module" attributes are respected; scripts are grouped by loading strategy and served as separate files with the correct attributes
  • Non-JS script type exclusion -- <script type="importmap">, <script type="speculationrules">, and other non-JS script types are never extracted and remain inline
  • HTML minification -- Optional response minification via minify-html for smaller page payloads (enabled by default when installed)
  • Pluggable builders -- Raw concatenation (default) or Tailwind CSS JIT compilation
  • Pluggable storage -- Django default storage (S3, GCS, Azure) or local filesystem
  • Cross-package integration -- Snippet publish triggers asset rebuild for all referencing pages via Wagtail's ReferenceIndex
  • Preview support -- Inline tags render naturally in preview mode; Tailwind CDN script is auto-injected when using Tailwind builder
  • Head script protection -- Inline <script> tags in <head> are skipped by default, protecting third-party template tag output (GTM, analytics, CMP). Use data-extract to opt in.
  • data-no-extract attribute -- Mark inline tags to skip extraction and keep them inline
  • Asset optimization -- Optional CSS minification (rcssmin) and JS obfuscation (terser / rjsmin) with graceful fallbacks
  • Strategy pattern architecture -- Extend with custom builders and storage backends

Installation

pip install wagtail-asset-publisher

Add to your INSTALLED_APPS:

# settings.py
INSTALLED_APPS = [
    # ...
    "wagtail_asset_publisher",
    # ...
]

Add the middleware:

# settings.py
MIDDLEWARE = [
    # ...
    "wagtail_asset_publisher.middleware.AssetPublisherMiddleware",
]

Run migrations:

python manage.py migrate

Quick Start

That's it. There is no step 2.

Once installed, wagtail-asset-publisher works automatically:

  1. Write inline <style> or <script> tags in your StreamField blocks as usual
  2. Publish the page
  3. The middleware strips the matched inline tags and injects static file references

View the published page source. You should see something like:

<link rel="stylesheet" href="/media/page-assets/css/42-a1b2c3d4.css">
<script src="/media/page-assets/js/42-e5f6a7b8.js"></script>
<script src="/media/page-assets/js/42-f9a0b1c2-defer.js" defer></script>
<script src="/media/page-assets/js/42-d3e4f5a6-module.js" type="module"></script>

The original inline tags are gone -- replaced by cached, content-hashed static files. Scripts with different loading attributes (defer, async, type="module") are grouped and served as separate files, each with the appropriate attribute restored.

How It Works

  1. Publish: Wagtail fires the published signal
  2. Extract: When EXTRACT_FROM_TEMPLATES is True (the default), the page is fully rendered via RequestFactory and inline <style> and <script> tags are parsed from the complete HTML output -- including tags defined in base templates and template fragments, not just StreamField blocks. If rendering fails, extraction falls back to StreamField-only scanning. When the setting is False, only StreamField blocks are scanned. Tags with data-no-extract are always skipped. Inline <script> tags inside <head> are skipped by default -- add data-extract to opt in. Non-JS script types (importmap, speculationrules, etc.) are skipped and left inline. Each extracted script records its loading strategy (defer, async, module, or blocking) and injection position (head or body).
  3. Group: Scripts are grouped by loading strategy. Each group is built and stored as a separate file (e.g., 42-abc123.js, 42-def456-defer.js, 42-ghi789-module.js).
  4. Build: Each group's content is passed to the configured builder (Raw or Tailwind)
  5. Store: Each built output is saved to storage with a content-hashed filename
  6. Record: One PublishedAsset record per group stores the URL, content hashes, and loading strategy for the page
  7. Serve: On the next request, the middleware looks up published assets, strips inline tags whose SHA-256 hash matches, and injects <link>/<script src> references. Each injected <script> tag carries the correct loading attributes (defer, async, type="module").

Configuration

All settings are optional. Configure via the WAGTAIL_ASSET_PUBLISHER dict in your Django settings:

# settings.py
WAGTAIL_ASSET_PUBLISHER = {
    "CSS_BUILDER": "wagtail_asset_publisher.builders.raw.RawAssetBuilder",
    "JS_BUILDER": "wagtail_asset_publisher.builders.raw.RawAssetBuilder",
    "STORAGE_BACKEND": "wagtail_asset_publisher.storage.django_storage.DjangoStorageBackend",
    "CSS_PREFIX": "page-assets/css/",
    "JS_PREFIX": "page-assets/js/",
    "HASH_LENGTH": 8,
    "MINIFY_HTML": True,
    "EXTRACT_FROM_TEMPLATES": True,
    "TAILWIND_CLI_PATH": None,
    "TAILWIND_CONFIG": None,
    "TAILWIND_BASE_CSS": None,
    "TAILWIND_PLUGINS": [],
    "TAILWIND_CDN_URL": "https://unpkg.com/@tailwindcss/browser@4",
    # Asset optimization (requires pip install wagtail-asset-publisher[minify])
    "MINIFY_CSS": True,
    "OBFUSCATE_JS": False,
    "TERSER_PATH": None,
    "TERSER_OPTIONS": ["-c", "-m"],
}

Available Settings

Setting Default Description
CSS_BUILDER "...builders.raw.RawAssetBuilder" CSS builder class (dotted path)
JS_BUILDER "...builders.raw.RawAssetBuilder" JS builder class (dotted path)
STORAGE_BACKEND "...storage.django_storage.DjangoStorageBackend" Storage backend class (dotted path)
CSS_PREFIX "page-assets/css/" Path prefix for CSS files in storage
JS_PREFIX "page-assets/js/" Path prefix for JS files in storage
HASH_LENGTH 8 Length of the content hash in filenames
MINIFY_HTML True Minify HTML responses using minify-html (requires pip install wagtail-asset-publisher[minify])
EXTRACT_FROM_TEMPLATES True When True, renders the full page HTML at publish time and extracts inline assets from the complete output (base templates, template fragments, and StreamFields). When False, only StreamField blocks are scanned.
TAILWIND_CLI_PATH None Path to Tailwind CLI binary (auto-detected if not set)
TAILWIND_CONFIG None Path to Tailwind config file
TAILWIND_BASE_CSS None Path to base input CSS file for Tailwind
TAILWIND_PLUGINS [] List of Tailwind CSS v4 first-party plugin package names to activate via @plugin directives. Ignored when TAILWIND_BASE_CSS is set. See Using Tailwind CSS Plugins.
TAILWIND_CDN_URL "https://unpkg.com/@tailwindcss/browser@4" Tailwind CDN URL for preview mode
MINIFY_CSS True Minify CSS output via rcssmin (requires minify extra)
OBFUSCATE_JS False Minify/obfuscate JS output via terser or rjsmin (requires minify extra)
TERSER_PATH None Explicit path to the terser binary (auto-detected if not set)
TERSER_OPTIONS ["-c", "-m"] CLI options passed to terser

Advanced Usage

HTML Minification

wagtail-asset-publisher can minify HTML responses to reduce page payload size. Minification is performed by the minify-html library, which also minifies inline CSS and JavaScript.

Install the optional dependency:

pip install wagtail-asset-publisher[minify]

Minification is enabled by default when the minify-html package is installed. No additional configuration is required.

To disable minification, set MINIFY_HTML to False:

# settings.py
WAGTAIL_ASSET_PUBLISHER = {
    "MINIFY_HTML": False,
}

Behaviour:

  • Minification only applies to published page responses processed by the middleware. Preview responses, streaming responses, and non-HTML responses are never minified.
  • If minify-html is not installed, the setting has no effect and HTML is returned unchanged.
  • If minification fails for any reason, the original HTML is returned unchanged and a warning is logged under the wagtail_asset_publisher logger.

The data-no-extract Attribute

Add data-no-extract to any <style> or <script> tag to prevent it from being extracted. The tag will remain inline in the rendered HTML.

This is useful for:

  • Critical CSS that must be inline for above-the-fold rendering
  • Initialization scripts that must execute before external scripts load
  • Third-party snippets that should not be bundled
<!-- This will be extracted and published as a static file -->
<style>
  .hero { background: linear-gradient(...); }
</style>

<!-- This stays inline -->
<style data-no-extract>
  .critical-above-fold { display: block; }
</style>

<!-- This stays inline -->
<script data-no-extract>
  window.__INITIAL_STATE__ = { ... };
</script>

External scripts (<script src="...">) are never extracted regardless of attributes.

Head Script Protection

When EXTRACT_FROM_TEMPLATES is True (the default), inline <script> tags inside <head> are skipped by default -- they remain inline and are never extracted. This protects scripts from third-party template tags (e.g., {% seo_head %}, GTM initialization, analytics, consent management) that must execute in <head> for correct behavior.

<style> tags in <head> are still extracted as usual, since CSS is always injected before </head>.

data-extract: Opt-in extraction for head scripts

To extract a specific <head> script, add the data-extract attribute. The script will be extracted, bundled, and injected before </head>:

<head>
  <!-- Skipped by default -- stays inline -->
  <script>
    (function(w,d,s,l,i){...})(window,document,'script','dataLayer','GTM-XXXX');
  </script>

  <!-- Opt-in: extracted and injected before </head> -->
  <script data-extract>
    initCriticalFeature();
  </script>
</head>

data-head: Inject body scripts in <head>

To extract a <body> script and inject it before </head> instead of before </body>, add the data-head attribute:

<body>
  <!-- Extracted and injected before </head> -->
  <script data-head>
    earlyInit();
  </script>

  <!-- Extracted and injected before </body> (default) -->
  <script>
    lateInit();
  </script>
</body>

Behavior summary

Location Attribute Extracted? Injection point
<head> (none) No Stays inline
<head> data-extract Yes Before </head>
<head> data-no-extract No Stays inline
<body> (none) Yes Before </body>
<body> data-head Yes Before </head>
<body> data-no-extract No Stays inline

Script Loading Attributes

wagtail-asset-publisher preserves the loading strategy of extracted inline scripts. Scripts with different loading attributes are grouped into separate static files, and the correct attributes are restored on the injected <script> tags at serve time.

Supported loading strategies:

Inline tag Generated file suffix Injected tag
<script> (none) <script src="...">
<script defer> -defer <script src="..." defer>
<script async> -async <script src="..." async>
<script type="module"> -module <script src="..." type="module">
<script type="module" async> -module-async <script src="..." type="module" async>

Scripts within the same loading group are concatenated into a single file. The injection order at serve time is: blocking, defer, module, async, module-async.

Non-JS script types (importmap, speculationrules, and any other non-JavaScript type attribute) are never extracted and always remain inline:

<!-- Extracted and served as a static file with defer -->
<script defer>
  document.addEventListener('DOMContentLoaded', () => { ... });
</script>

<!-- Extracted as a module -->
<script type="module">
  import { init } from './app.js';
  init();
</script>

<!-- Never extracted -- stays inline -->
<script type="importmap">
  { "imports": { "app": "/static/app.js" } }
</script>

<!-- Never extracted -- stays inline -->
<script type="speculationrules">
  { "prefetch": [{ "source": "list", "urls": ["/next-page/"] }] }
</script>

data-head can be combined with any loading attribute. For example, <script data-head defer> will be extracted and injected before </head> with the defer attribute.

Asset Optimization (CSS Minification and JS Obfuscation)

Install the minify extra to enable built-in optimization:

pip install wagtail-asset-publisher[minify]

This installs rcssmin and rjsmin. For stronger JS minification, also install terser via npm:

npm install terser

CSS Minification

CSS minification is enabled by default (MINIFY_CSS: True). It uses rcssmin to strip whitespace and comments from the built CSS output. If rcssmin is not installed, a warning is logged and the unminified output is used instead.

To disable CSS minification:

WAGTAIL_ASSET_PUBLISHER = {
    "MINIFY_CSS": False,
}

JS Optimization

JS optimization is disabled by default (OBFUSCATE_JS: False). When enabled, the following fallback chain is used:

  1. terser (CLI) -- full minification with dead-code elimination and identifier mangling
  2. rjsmin (Python) -- whitespace and comment stripping; used if terser is not found
  3. no optimization -- a warning is logged and the original output is used if neither tool is available

To enable JS optimization:

WAGTAIL_ASSET_PUBLISHER = {
    "OBFUSCATE_JS": True,
}

Terser binary discovery order:

  1. TERSER_PATH setting (explicit path)
  2. {BASE_DIR}/node_modules/.bin/terser (local npm install)
  3. terser on the system PATH

To point to a specific terser binary:

WAGTAIL_ASSET_PUBLISHER = {
    "OBFUSCATE_JS": True,
    "TERSER_PATH": "/path/to/node_modules/.bin/terser",
    "TERSER_OPTIONS": ["-c", "-m"],  # compress + mangle (default)
}

Tailwind CSS JIT Mode

For Tailwind mode, install with the tailwind extra:

pip install wagtail-asset-publisher[tailwind]

Set up django-tailwind-cli:

# settings.py
INSTALLED_APPS = [
    # ...
    "django_tailwind_cli",
    # ...
]

Download the Tailwind CLI binary:

python manage.py tailwind download_cli

Note: django-tailwind-cli requires STATICFILES_DIRS to be configured. If not already set, add STATICFILES_DIRS = [BASE_DIR / "static"] to your settings.

Configure the CSS builder:

# settings.py
WAGTAIL_ASSET_PUBLISHER = {
    "CSS_BUILDER": "wagtail_asset_publisher.builders.tailwind.TailwindCSSBuilder",
    # Optional: path is auto-detected from django-tailwind-cli or PATH
    "TAILWIND_CLI_PATH": "/path/to/tailwindcss",
    "TAILWIND_CONFIG": "tailwind.config.js",
}

How it works:

  1. On page publish, the page is rendered to full HTML via render_page_html()
  2. When EXTRACT_FROM_TEMPLATES is also True (the default), the rendered HTML is shared between asset extraction and the Tailwind builder via an internal cached_render() context -- the page is rendered only once per publish, regardless of how many pipeline steps need the HTML
  3. Tailwind CLI scans the HTML for utility classes
  4. Only the CSS for classes actually used is generated
  5. Any extracted inline <style> content is included in the build
  6. If the CLI fails, the builder gracefully falls back to raw CSS output

Preview support: When using the Tailwind builder, the middleware automatically injects the Tailwind CSS browser CDN script into preview responses. This lets editors see Tailwind utility classes rendered in real time before publishing. The CDN script is never injected in published pages.

Using Tailwind CSS Plugins

Tailwind CSS v4 ships with several first-party plugins that can be activated via @plugin directives. Instead of manually managing a base CSS file, you can list the plugins in the TAILWIND_PLUGINS setting and they will be injected automatically:

WAGTAIL_ASSET_PUBLISHER = {
    "CSS_BUILDER": "wagtail_asset_publisher.builders.tailwind.TailwindCSSBuilder",
    "TAILWIND_PLUGINS": [
        "@tailwindcss/typography",
        "@tailwindcss/forms",
    ],
}

This generates the following input CSS for the Tailwind CLI:

@import "tailwindcss";
@plugin "@tailwindcss/typography";
@plugin "@tailwindcss/forms";
@source "/tmp/.../content.html";

Available first-party plugins (bundled with the standalone CLI):

  • @tailwindcss/typography -- Beautiful typographic defaults for HTML content
  • @tailwindcss/forms -- Form element reset and styling utilities
  • @tailwindcss/aspect-ratio -- Aspect ratio utilities for legacy browser support

Note: The @tailwindcss/container-queries plugin is built into Tailwind CSS v4 core. No plugin activation is needed -- @container queries and @min-*/@max-* variants work out of the box.

Note: Third-party plugins (not bundled with Tailwind) require a Node.js-based Tailwind CLI installation. The standalone binary only supports first-party plugins. If you need third-party plugins, use TAILWIND_BASE_CSS to provide a fully custom input CSS file.

When TAILWIND_BASE_CSS is set, TAILWIND_PLUGINS is ignored entirely because the user controls the full input CSS. For advanced customization beyond plugin activation, see the TAILWIND_BASE_CSS setting.

Note: Plugin styles are not available in Wagtail's preview mode. The Tailwind CSS browser CDN (@tailwindcss/browser@4) used for previews does not include plugin implementations. Published pages will render plugin styles correctly since they are compiled by the standalone CLI.

Cross-Package Integration

wagtail-asset-publisher integrates with Wagtail's published signal and ReferenceIndex to support cross-package workflows.

Snippet publish cascading: When a snippet with DraftStateMixin (e.g., a reusable content block) is published, the signal handler automatically:

  1. Looks up all pages referencing the snippet via ReferenceIndex
  2. Rebuilds assets for each referencing page

This means if a reusable block containing inline styles is updated, all pages using that block get their assets rebuilt automatically.

S3 Storage with django-storages

The default DjangoStorageBackend delegates to Django's default_storage, so it works with any storage backend out of the box:

# settings.py
STORAGES = {
    "default": {
        "BACKEND": "storages.backends.s3boto3.S3Boto3Storage",
        "OPTIONS": {
            "bucket_name": "my-assets-bucket",
        },
    },
}

WAGTAIL_ASSET_PUBLISHER = {
    "CSS_PREFIX": "assets/css/",
    "JS_PREFIX": "assets/js/",
}

Local File Storage

For development without cloud storage, use LocalFileStorage which saves assets under STATIC_ROOT:

# settings.py
WAGTAIL_ASSET_PUBLISHER = {
    "STORAGE_BACKEND": "wagtail_asset_publisher.storage.local.LocalFileStorage",
}

Custom Builders

Create a custom builder by subclassing BaseAssetBuilder:

from wagtail_asset_publisher.builders.base import BaseAssetBuilder


class MinifyingCSSBuilder(BaseAssetBuilder):
    def build(self, html_content, extracted_content, asset_type):
        if not extracted_content:
            return ""
        combined = "\n\n".join(extracted_content)
        return minify(combined)

Set requires_html_content = True on your builder class if it needs the full page HTML (like the Tailwind builder does for class scanning).

Then configure it:

WAGTAIL_ASSET_PUBLISHER = {
    "CSS_BUILDER": "myapp.builders.MinifyingCSSBuilder",
}

Management Command

The rebuild_assets command lets you rebuild published assets in bulk:

# Rebuild assets for all pages that have existing published assets
python manage.py rebuild_assets

# Rebuild assets for specific pages
python manage.py rebuild_assets --page-ids 42 57 103

# Rebuild assets for ALL live pages (including those without existing assets)
python manage.py rebuild_assets --all

# Preview what would be rebuilt without making changes
python manage.py rebuild_assets --dry-run

This is useful after:

  • Upgrading the package or changing builder settings
  • Migrating storage backends
  • Bulk content imports

Troubleshooting

Assets Not Building on Publish

Issue: You publish a page but no asset files appear in storage.

Solutions:

  1. Confirm the page contains inline <style> or <script> tags (in StreamField blocks or templates)
  2. Check that the tags don't have data-no-extract attribute
  3. Verify the middleware is in your MIDDLEWARE setting
  4. Review Django logs for build errors (logging is under wagtail_asset_publisher)
  5. If EXTRACT_FROM_TEMPLATES is True (the default), check the logs for template rendering errors -- a warning is logged when rendering fails and the extractor falls back to StreamField-only mode

Template Rendering Fails During Extraction

Issue: You see a warning like Failed to render page MyPage (pk=42) for asset extraction in the logs.

Solutions:

  1. The page's get_context() or template may raise an exception when rendered with a plain RequestFactory request and an AnonymousUser
  2. Guard context dependencies on authentication with a conditional check, or use data-no-extract on affected tags
  3. As a last resort, set EXTRACT_FROM_TEMPLATES to False to fall back to StreamField-only extraction and avoid template rendering entirely
WAGTAIL_ASSET_PUBLISHER = {
    "EXTRACT_FROM_TEMPLATES": False,
}

Inline Tags Not Being Replaced

Issue: The page still shows inline <style>/<script> tags instead of static file references.

Solutions:

  1. Verify AssetPublisherMiddleware is in your MIDDLEWARE setting
  2. Check that the response Content-Type is text/html
  3. Ensure the page was published (not just saved as draft)
  4. The middleware only activates for Wagtail page responses (requests with a wagtailpage attribute)

Tailwind CLI Not Found

Issue: TailwindCSSBuilder falls back to raw CSS output.

Solutions:

  1. Install django-tailwind-cli (the CLI path is auto-detected)
  2. Or set TAILWIND_CLI_PATH explicitly to the binary location
  3. Or ensure tailwindcss is available on your system PATH
  4. Confirm django_tailwind_cli is included in your INSTALLED_APPS
  5. Confirm STATICFILES_DIRS is configured (required by django-tailwind-cli)
  6. In Docker/CI environments, run python manage.py tailwind download_cli to download the binary
  7. The builder logs the error and falls back gracefully to raw CSS

CSS Not Being Minified

Issue: Published CSS files are not minified even though MINIFY_CSS is True.

Solutions:

  1. Install the minify extra: pip install wagtail-asset-publisher[minify]
  2. Check Django logs for a warning message containing rcssmin is not installed

JS Not Being Optimized

Issue: Published JS files are not minified even though OBFUSCATE_JS is True.

Solutions:

  1. Install the minify extra: pip install wagtail-asset-publisher[minify]
  2. For terser-level optimization, ensure terser is available: npm install terser or npm install -g terser
  3. Check Django logs for warnings -- the fallback chain logs each step:
    • terser failed: ... means terser was found but errored; rjsmin will be tried
    • Neither terser nor rjsmin is available. JS optimization skipped. means neither tool is installed
  4. Set TERSER_PATH explicitly if terser is installed at a non-standard location

Snippet Publish Not Rebuilding Pages

Issue: Publishing a snippet doesn't rebuild assets for pages that use it.

Solutions:

  1. Ensure the snippet uses DraftStateMixin (the published signal only fires for draftable models)
  2. Verify ReferenceIndex is available (Wagtail 4.1+)

Requirements

Python Django Wagtail
3.10+ 4.2, 5.1, 5.2 6.4, 7.0, 7.2

See our CI configuration for the complete compatibility matrix.

Project Links

Contributing

We welcome contributions! Please see our Contributing Guide for details.

License

BSD 3-Clause License. See LICENSE for details.

Inspiration

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

wagtail_asset_publisher-0.5.1.tar.gz (92.7 kB view details)

Uploaded Source

Built Distribution

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

wagtail_asset_publisher-0.5.1-py3-none-any.whl (36.1 kB view details)

Uploaded Python 3

File details

Details for the file wagtail_asset_publisher-0.5.1.tar.gz.

File metadata

  • Download URL: wagtail_asset_publisher-0.5.1.tar.gz
  • Upload date:
  • Size: 92.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for wagtail_asset_publisher-0.5.1.tar.gz
Algorithm Hash digest
SHA256 571efb9fa19a2733098c4f1cf75482f698cea7b005186553e4f38b9c27980623
MD5 fdb0887c38410d1466b692e23c1b1cc3
BLAKE2b-256 b0e49f114e4d780c4328830c9e6b156559746ddae055ea7b947c3de7bf72cfd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wagtail_asset_publisher-0.5.1.tar.gz:

Publisher: publish.yml on kkm-horikawa/wagtail-asset-publisher

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wagtail_asset_publisher-0.5.1-py3-none-any.whl.

File metadata

File hashes

Hashes for wagtail_asset_publisher-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1edff8495c99f968dbe8323a3978685d6faa76bec52d4937f20659f8a6f3a234
MD5 0d8c985b4c2cf5d958a673af6a00c0ea
BLAKE2b-256 605bdcb8cd1ccebb0635185af05c05dd419762031e6d1bfd02c84bc9e805bfe0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wagtail_asset_publisher-0.5.1-py3-none-any.whl:

Publisher: publish.yml on kkm-horikawa/wagtail-asset-publisher

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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