Skip to main content

min-html

A Rust HTML minifier meticulously optimised for speed and effectiveness, with bindings for other languages.

View the changelog to see the latest updates.

Performance

Comparison with html-minifier-next and minimize, run on the top web pages. See the breakdown here.

Chart showing speed of HTML minifiersChart showing compression of HTML minifiers

The onepass variant is even more optimised for speed. See its README for more details.

Compatibility and usage

CLI

The CLI is called minhtml. Precompiled binaries are available for Linux (ARM64 and x64), macOS (ARM64 and x64), and Windows (x64). You can download them in the GitHub release.

If you have Cargo installed, you can also build and install from source: cargo install minhtml-cli.

Use

Use the --help argument for more details.

minhtml --output /path/to/output.min.html --keep-closing-tags --minify-css /path/to/src.html

To quickly parallel process a batch of files in place:

minhtml --keep-closing-tags --minify-css /path/to/**/*.html
Rust

Get

[dependencies]
min-html = "0.18.1"

Use

Check out the docs for API and usage examples.

Deno

Get

Add the JSR package:

deno add jsr:@minhtml/deno

Use

import init, {minify} from "@minhtml/deno";

const encoder = new TextEncoder();
const decoder = new TextDecoder();

await init();

const minified = decoder.decode(minify(encoder.encode("<p>  Hello, world!  </p>"), { keep_spaces_between_attributes: true, keep_comments: true }));

All Cfg fields are available as snake_case properties on the object provided as the second argument; if any are not set, they default to false.

Node.js
  • Package: @minhtml/node
  • Binding: Neon
  • Platforms: Linux (ARM64 and x64), macOS (ARM64 and x64), Windows (x64); Node.js 10.0.0 and higher

Get

Using npm:

npm i @minhtml/node

Using Yarn:

yarn add @minhtml/node

Use

TypeScript definitions are available.

import { Buffer } from "node:buffer";
import minifyHtml from "@minhtml/node";
// Or `const minifyHtml = require("@minhtml/node")` if not using TS/ESM.

const minified = minifyHtml.minify(Buffer.from("<p>  Hello, world!  </p>"), { keep_spaces_between_attributes: true, keep_comments: true });

All Cfg fields are available as snake_case properties on the object provided as the second argument; if any are not set, they default to false.

Java
  • Package: com.qqshi13.minhtml
  • Binding: JNI
  • Platforms: Linux (ARM64 and x64), macOS (ARM64 and x64), Windows (x64); Java 8 and higher

Get

Add as a Maven dependency:

<dependency>
  <groupId>com.qqshi13.minhtml</groupId>
  <artifactId>min-html</artifactId>
  <version>0.18.4</version>
</dependency>

Use

import com.qqshi13.minhtml.Configuration;
import com.qqshi13.minhtml.MinifyHtml;

Configuration cfg = new Configuration.Builder()
    .setKeepHtmlAndHeadOpeningTags(true)
    .setMinifyCss(true)
    .build();

String minified = MinifyHtml.minify("<p>  Hello, world!  </p>", cfg);

All Cfg fields are available as camelCase setter methods on the Builder; if any are not set, they default to false.

Python
  • Package: min-html
  • Binding: PyO3
  • Platforms: Linux (ARM64 and x64), macOS (ARM64 and x64), Windows (x64); Python 3.8 to 3.14

Get

Add the PyPI project as a dependency and install it using pip or pipenv.

Use

import min_html

minified = min_html.minify("<p>  Hello, world!  </p>", minify_js=True, remove_processing_instructions=True)

All Cfg fields are available as Python keyword arguments; if any are omitted, they default to False.

Ruby
  • Package: min_html
  • Binding: rb-sys and magnus
  • Platforms: Linux (ARM64 and x64), macOS (ARM64 and x64), Windows (x64); Ruby 3.2 to 3.4

Get

Add the library as a dependency to Gemfile or *.gemspec.

Use

require 'min_html'

print min_html("<p>  Hello, world!  </p>", { :keep_spaces_between_attributes => true, :minify_js => true })

All Cfg fields are available; if any are omitted, they default to false.

WASM

A bundler may be required to use the WebAssembly module, see this for more details.

Use

import init, {minify} from "@minhtml/wasm";

const encoder = new TextEncoder();
const decoder = new TextDecoder();

await init();

const minified = decoder.decode(minify(encoder.encode("<p>  Hello, world!  </p>"), { keep_spaces_between_attributes: true, keep_comments: true }));

All Cfg fields are available as snake_case properties on the object provided as the second argument; if any are not set, they default to false.

Templating syntax

min-html can parse and preserve {{/{%/{# and <% syntax in the source code, which allows minification of many HTML templates written for most engines like Pebble, Mustache, Django, Go, Jinja, Twix, Nunjucks, Handlebars, Sailfish, JSP, EJS, and ERB. Look for the preserve_*_template_syntax Cfg options.

PHP blocks (<?php or <?=) also happen to be processing instructions, which are preserved by default.

Note that in all of these syntax, the parsing is "dumb": it will simply look for the next subsequence of characters that match the closing delimiter. This may cause issues if nesting or string literals appear inside these blocks, but this should be rare.

Minification

Spec compliance

WHATWG is the current HTML standard and obsoletes all previous standards. WHATWG lists suggested validators here.

To minify even further, it's possible to enable options that may output HTML that doesn't fully pass validation, but is still interpreted and rendered correctly according to the WHATWG parsing specification, which major browser engines (Firefox, Chrome, Safari) implement. Refer to these options:

  • allow_noncompliant_unquoted_attribute_values
  • allow_optimal_entities
  • allow_removing_spaces_between_attributes
  • minify_doctype

In Rust, Cfg::enable_possibly_noncompliant can enable all of these at once.

Whitespace

min-html has advanced context-aware whitespace minification that does things such as:

  • Leave whitespace untouched in pre and code, which are whitespace sensitive.
  • Trim and collapse whitespace in content tags, as whitespace is collapsed anyway when rendered.
  • Remove whitespace in layout tags, which allows the use of inline layouts while keeping formatted code.

Methods

There are three whitespace minification methods. When processing text content, min-html chooses which ones to use depending on the containing element.

Collapse whitespace

Applies to: any element except whitespace sensitive elements.

Reduce a sequence of whitespace characters in text nodes to a single space (U+0020).

BeforeAfter
<p>↵
··The·quick·brown·fox↵
··jumps·over·the·lazy↵
··dog.↵
</p>
<p>·The·quick·brown·fox·jumps·over·the·lazy·dog.·</p>
Destroy whole whitespace

Applies to: any element except whitespace sensitive, content, content-first, and formatting elements.

Remove any text nodes between tags that only consist of whitespace characters.

BeforeAfter
<ul>↵
··<li>A</li>↵
··<li>B</li>↵
··<li>C</li></ul>
<ul>↵
··<li>A</li><li>B</li><li>C</li></ul>
Trim whitespace

Applies to: any element except whitespace sensitive and formatting elements.

Remove any leading/trailing whitespace from any leading/trailing text nodes of a tag.

BeforeAfter
<p>↵
··Hey,·I·<em>just</em>·found↵
··out·about·this·<strong>cool</strong>·website!↵
··<sup>[1]</sup></p>
<p>Hey,·I·<em>just</em>·found↵
··out·about·this·<strong>cool</strong>·website!↵
··<sup>[1]</sup></p>

Element types

min-html assumes HTML and SVG elements are used in specific ways, based on standards and best practices. By making these assumptions, it can apply optimal whitespace minification strategies. If these assumptions do not hold, consider adjusting the HTML source or turning off whitespace minification.

Group Elements Expected children
Formatting a, strong, and others Formatting elements, text.
Content h1, p, and others Formatting elements, text.
Layout div, ul, and others Layout elements, content elements.
Content-first label, li, and others Like content but could be layout with only one child.
Formatting elements

Whitespace is collapsed.

Formatting elements are usually inline elements that wrap around part of some text in a content element, so its whitespace isn't trimmed as they're probably part of the content.

Content elements

Whitespace is trimmed and collapsed.

Content elements usually represent a contiguous and complete unit of content such as a paragraph. As such, whitespace is significant but sequences of them are most likely due to formatting.

Before
<p>↵
··Hey,·I·<em>just</em>·found↵
··out·about·this·<strong>cool</strong>·website!↵
··<sup>[1]</sup></p>
After
<p>Hey,·I·<em>just</em>·found·out·about·this·<strong>cool</strong>·website!·<sup>[1]</sup></p>
Layout elements

Whitespace is trimmed and collapsed. Whole whitespace is removed.

These elements should only contain other elements and no text. This makes it possible to remove whole whitespace, which is useful when using display: inline-block so that whitespace between elements (e.g. indentation) does not alter layout and styling.

Before
<ul>↵
··<li>A</li>↵
··<li>B</li>↵
··<li>C</li></ul>
After
<ul><li>A</li><li>B</li><li>C</li></ul>
Content-first elements

Whitespace is trimmed and collapsed.

These elements are usually like content elements but are occasionally used like a layout element with one child. Whole whitespace is not removed as it might contain content, but this is OK for using as layout as there is only one child and whitespace is trimmed.

Before
<li>↵
··<article>↵
····<section></section>↵
····<section></section>↵
··</article></li>
After
<li><article><section></section><section></section></article></li>

Tags

Optional opening and closing tags are removed.

Attributes

Any entities in attribute values are decoded, and then the shortest representation of the value is calculated and used:

  • Double quoted, with any " encoded.
  • Single quoted, with any ' encoded.
  • Unquoted, with "/' first character (if applicable), any >, and any whitespace encoded.

Attributes have their whitespace (after any decoding) trimmed and collapsed when possible.

Boolean attribute values are removed. Some other attributes are completely removed if their value is empty or the default value after any processing.

type attributes on script tags with a value equaling a JavaScript MIME type are removed.

If an attribute value is empty after any processing, everything but the name is completely removed (i.e. no =), as an empty attribute is implicitly the same as an attribute with an empty string value.

Spaces are removed between attributes when possible.

Entities

Entities are decoded if they're valid and shorter or equal in length when decoded. UTF-8 sequences that have a shorter entity representation are encoded.

Numeric entities that do not refer to a valid Unicode Scalar Value are replaced with the replacement character.

Encoding is avoided when possible; for example, < are only encoded in content if they are followed by a valid tag name character. If necessary, the shortest entity representation is chosen.

Comments

Comments are removed.

Ignored

Bangs, processing instructions, and empty elements are not removed as it is assumed there is a special reason for their declaration.

Parsing

min-html can process any HTML, handling all possible syntax (including invalid ones) gracefully like browsers. See Parsing.md for more details.

Issues and contributions

Pull requests and any contributions welcome!

If min-html did something unexpected, misunderstood some syntax, or incorrectly kept/removed some code, raise an issue with some relevant code that can be used to reproduce and investigate the issue.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

min_html_onepass-0.18.4.tar.gz (90.2 kB view details)

Uploaded Source

Built Distributions

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

min_html_onepass-0.18.4-cp314-cp314-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.14Windows x86-64

min_html_onepass-0.18.4-cp314-cp314-musllinux_1_1_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

min_html_onepass-0.18.4-cp314-cp314-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

min_html_onepass-0.18.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

min_html_onepass-0.18.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

min_html_onepass-0.18.4-cp314-cp314-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

min_html_onepass-0.18.4-cp314-cp314-macosx_10_12_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

min_html_onepass-0.18.4-cp313-cp313-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.13Windows x86-64

min_html_onepass-0.18.4-cp313-cp313-musllinux_1_1_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

min_html_onepass-0.18.4-cp313-cp313-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

min_html_onepass-0.18.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

min_html_onepass-0.18.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

min_html_onepass-0.18.4-cp313-cp313-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

min_html_onepass-0.18.4-cp313-cp313-macosx_10_12_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

min_html_onepass-0.18.4-cp312-cp312-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.12Windows x86-64

min_html_onepass-0.18.4-cp312-cp312-musllinux_1_1_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

min_html_onepass-0.18.4-cp312-cp312-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

min_html_onepass-0.18.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

min_html_onepass-0.18.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

min_html_onepass-0.18.4-cp312-cp312-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

min_html_onepass-0.18.4-cp312-cp312-macosx_10_12_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

min_html_onepass-0.18.4-cp311-cp311-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.11Windows x86-64

min_html_onepass-0.18.4-cp311-cp311-musllinux_1_1_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

min_html_onepass-0.18.4-cp311-cp311-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

min_html_onepass-0.18.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

min_html_onepass-0.18.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

min_html_onepass-0.18.4-cp311-cp311-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

min_html_onepass-0.18.4-cp311-cp311-macosx_10_12_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

min_html_onepass-0.18.4-cp310-cp310-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.10Windows x86-64

min_html_onepass-0.18.4-cp310-cp310-musllinux_1_1_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

min_html_onepass-0.18.4-cp310-cp310-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

min_html_onepass-0.18.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

min_html_onepass-0.18.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

min_html_onepass-0.18.4-cp310-cp310-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

min_html_onepass-0.18.4-cp310-cp310-macosx_10_12_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

min_html_onepass-0.18.4-cp39-cp39-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.9Windows x86-64

min_html_onepass-0.18.4-cp39-cp39-musllinux_1_1_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

min_html_onepass-0.18.4-cp39-cp39-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

min_html_onepass-0.18.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

min_html_onepass-0.18.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

min_html_onepass-0.18.4-cp39-cp39-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

min_html_onepass-0.18.4-cp39-cp39-macosx_10_12_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

min_html_onepass-0.18.4-cp38-cp38-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.8Windows x86-64

min_html_onepass-0.18.4-cp38-cp38-musllinux_1_1_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

min_html_onepass-0.18.4-cp38-cp38-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

min_html_onepass-0.18.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

min_html_onepass-0.18.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

min_html_onepass-0.18.4-cp38-cp38-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

min_html_onepass-0.18.4-cp38-cp38-macosx_10_12_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file min_html_onepass-0.18.4.tar.gz.

File metadata

  • Download URL: min_html_onepass-0.18.4.tar.gz
  • Upload date:
  • Size: 90.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for min_html_onepass-0.18.4.tar.gz
Algorithm Hash digest
SHA256 89bf80b1941c4cac0394f9949976f319fa289c5917a5778d53b023f3604c80cb
MD5 0e7fba5cb2b841b4b35ee59b9425bf83
BLAKE2b-256 c008750c5387094e3771a1fdfdf4e30b3005ca222a0e123e0de72a42d5fea748

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4.tar.gz:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b400e532eee90f13b07e8f74422a80aecc0264fe758e1399564cf3de5b7ffd26
MD5 788ef83451d37ce7977d430384239ba3
BLAKE2b-256 bc9397f6332b8149d0c8a5560d3d540f14b8940faca9e57521ed176ce02ab42a

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp314-cp314-win_amd64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9a3188ba65f2da804e8c7bd3741e964ea603109501192899306a2349ed545ae5
MD5 7d02f99ee61b99a16f2e828cf2d40cda
BLAKE2b-256 28e2e88d69aa07386d11c62887eaafe891d81927704a650c690629874390fc13

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp314-cp314-musllinux_1_1_x86_64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d832e4718a62e00b2f63cad38c7968d43bc8e23bc8d6ac36669520884cc97c4f
MD5 4190b34fc3530541b047a8417df360b7
BLAKE2b-256 81454b94a84c326784c97f747fa3018fe2ccf1bdfa162e2c27420e40f18ccd68

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp314-cp314-musllinux_1_1_aarch64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2070920c8241d48590c7069ddb310767edea45599ea3c06bf6ca269d473c40cf
MD5 b91503b5e1340e9ce0a46f25e24cfc26
BLAKE2b-256 4b76c52c2d3c8368e447dd118278eeae9ae3b3013b6dab669ad9575313d0d5d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3cbc4cff6f3062bacea2cddb88646538239f30ab80558283a1891677983620b8
MD5 e6043afc6b1eb48f93e33be57abe0f1a
BLAKE2b-256 80f7dde8423cf3e2df47781a6ed54f320637b23f9baf41f58d1e1820e371aacd

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 351545aeb688bdddef476a9cc1f2870a728524111a28631bb8748b22d3351071
MD5 098f8606d454424a66e6e1708120fddf
BLAKE2b-256 6175bb318d67429e075f0a323ba71c8296d15f649918409d3bc1c30df23a0343

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2fe868224bfa6572e9351fdc91a1002d6703a3fb24b2c0246eeeed1d5e0a4acd
MD5 a4419a1377d868876e9b804908a1a552
BLAKE2b-256 1b6a25b4171734f0e0a8a6e9a8c217bb437b0baec0ef9f5ca83e7c4e0e6bfcb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 046256a68408668ca14bc9aed44f9a669f10c7aa08246ef6ba9e676d804609d8
MD5 7c72cec77ce4b2803a3e059eecd8affe
BLAKE2b-256 0bc0c50e2d49f206ee4169bba7f25184f5d39a3b26008e408acfa06bcc6cb7a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp313-cp313-win_amd64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e33e931e868a35a0eebb2263bead437e32ba7cc62288d3f61b58f36d2363be1a
MD5 816dbe02fbb5497fe1e42856a5fe5cb8
BLAKE2b-256 7e1069649c5d1adf7e8152931b4583e7988556799a77ac022611d258203f5d9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a7970a4d5eb468e6f9feab70d45d63778b63acbc4c203139a9a34ae2498628d2
MD5 ad4bc519576a1bf7c1a6241f9d653433
BLAKE2b-256 fe581ca19197715055174c1486d985c31d4bf057634c601ea5e159503bb3f849

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp313-cp313-musllinux_1_1_aarch64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cadaadb715a88163e412cf60e01e2ed45274f6d507673d2829ec694296806ac2
MD5 d204853aa099261d9917f490f1a5c92a
BLAKE2b-256 e2a9f36d436fb9fc97d9597be285f86001360887bc78986af11cd40ebad515f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 003927e644eaae58ba0f4738bbdfe783dd21a6d3e1c20eff4df0a1bd5dfcde38
MD5 58466aea7d1e790d042bc776dab96202
BLAKE2b-256 bad3acfee22ea7dd8d3faba716bacbe07a9424e03d70f70a5067fb1c886a23d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bd4c055aebc06653cb5d10dd9e0f66c89596d69864a86abd597923ea5342f24
MD5 75fa1563ae8f8141b81de230b75ccc9b
BLAKE2b-256 e425c517a9edbb5d7daf82f5dafa969e5b2a6fabef60472d3543a4f275505717

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2dcdc4df371735fa9619cc12c018c415d954dd3d51e1358023bd15e520e39d6d
MD5 83f3d159b1eada37cd2cfe72e8abcb62
BLAKE2b-256 edaac061a8b2895929e3150be7ddffe3b423a20f88eb59606138fbf4775396f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9a2b9c80c0861ed139fb96540b7af8f5445bf80622a70735f02eb15e9324497d
MD5 f51eb380da9236193d0160568fdf0bdc
BLAKE2b-256 58b034701388ac7c466df839e142de3e61e36212c45f102d65a6f73fa4c4e42b

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp312-cp312-win_amd64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 10d085e6c1954f90d54c487aa4cec576bb82fdad60b72de1d962163897df5b16
MD5 4aef1130b59092e94a0895e961fdf2a6
BLAKE2b-256 50b3fc0c6b8582c266e1371ea9166b35d8371a23dcb2ef2fa694439188dbc51a

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 348f6f4ec83596c768e255efb7e5b9ab90f416c1ad246ed9034cb7c5f571ed72
MD5 c2b257c30ea2580ece165d395426c6b3
BLAKE2b-256 337b5668a39da3bf00f84bf90677bf286ef92dceaa39098f9fee4d75d04542f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93b34a19c980b5e7d9b9408405aa7e87bef995f00283eaaaf1052b9b99eed370
MD5 a8810c0a5c7696f3fb5e351820ab75fc
BLAKE2b-256 1fd6674d9dfba39d9ebbcea1f92c9ed07257b2f5be9fd3f8fcb4b17804c817f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68368337773f706eff12531a749bfca549a64c2de6bd98355d14a1cf6a0f8267
MD5 16eaf969258806b716667e209a09adcf
BLAKE2b-256 b4eb5aca8e6664bfa6e9bbe8ecea138d1f949196fec1ceaca1e48aa840653a38

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 310cf526884dbda7ff9642eca4a43bcc33b173bbf19ffb16aceca323311f8997
MD5 719d4d015d91bd8bb7eeeb22d57ae9ea
BLAKE2b-256 605ffc354d742e848b8f61d8ed1b0219fcef61b380d1640fb72e11886a543957

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eddc08c8c5ab05ff585fdd7d112fc70e0e4a2f76619cc9b822453331b6adc46c
MD5 f9a541c14b30cd7c306c6f4e82f142ce
BLAKE2b-256 78c8365a500d96505ee5bb9e054b750788ddb0cea4aac5b116875939e6e66c1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 96db0583cfa317b0779a8fc05c099b0fc7916a3b6084d0fdde05839a346193fc
MD5 fe1a580754e8345d087959dfb634e699
BLAKE2b-256 c7857d931443b79bfbaac6ff67d9fbcdcae965c0329c0a9c2e35c2b83ff1821c

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp311-cp311-win_amd64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b06e787a109f519c1bbfd3ce30e67edb32b3360ecd44cee3c462ba1f518235a1
MD5 06b017fd62446620e7e555fd3a080b47
BLAKE2b-256 4d95f44520fbf792822c0b12d0bcd7c9586e56cc53ec3897c15937d396b281d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 de8e692d50b143932023d06f94704ef736be0d7922b22b1881ee088282bdb424
MD5 4eb9fa82c51224ad3cefea6c50a6699f
BLAKE2b-256 a9473723b97fec80bd1d45db405e4ed1287d08e14cdc34687f232dc0bac1d605

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 902267e1fa2e2f9cc1a30f1f73d97298a2753284c12ad29c6a174ee8bbf1998b
MD5 9bd1945d7bde11f34cec7d47772bb282
BLAKE2b-256 575907f51601222ca1e197baba02b6ec832621e112e147df45a837f3950ac7a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3236d633fce93a1c027e4b06ffb1e5ae5de23fbb3c4b02d096517744ce681e07
MD5 bfd6e485eb124d2336813bbd441da859
BLAKE2b-256 d1cac5fcad4cde0f596b6b5acfa3b3fbff32e967f5210fae06d076f09e924255

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59a1b5f326211e53605d60f6b7bc0df5541795808c19b059df34897b248bfa03
MD5 f79d54ef467ff56984692977f80d072a
BLAKE2b-256 b3bbeddbe6be82eabbd7fb9ed24af534241fb76c2b95179c83db92026e6eb0cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 54f6a32e24e3a60dca311f0532c8ea5dadbb1d4ebcc011faf6e5e5d47362632a
MD5 c4886aa990063d67e87e3deda7d13b7f
BLAKE2b-256 2bd8871a72a95a56c738382d10565ad2a9c902ef73af45b178ce9ba8bda21d45

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 805a82ad380374798ba69af665a13a96ced6cc85b77bb30b4fb62b1068d8f67a
MD5 084ce1d8ced4a2ef27656ea09d123c87
BLAKE2b-256 e31b88cda75363a80d66810caf58b708a840b1fcf2e1adec63431780187f9f9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp310-cp310-win_amd64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cd9b9c4e4a268a67dd7581b0b2d785eecda58bf08afb6c2565a600de2a1fecad
MD5 35419720541c7c8a7576332c9633b546
BLAKE2b-256 4959bab39fb2ed92fb23f6740fc16237cdc052003f44da84d3b3918fa5a6cef3

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b2e697290325c728a0d87a9a356153038fb9c3678020c711491d91de2431a5c5
MD5 a504e42dc9fea0b640cb0b0d25f99d36
BLAKE2b-256 9e9c84e17611d8566bd57841a0196860a5ab3428eec97105fc18dfed71ec6a9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e0271787dc0b42b066739f54c15d777a2cc488b168848796eaea310c33fc1a0
MD5 f1abb05acaf1a8c515bb68c14b097651
BLAKE2b-256 a9fa074505dd1010fe5dbdbbf8b527d46bf3e5105022b1ab69509542a10ab8ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1bd68697b907e1438d90911ae5e1b744b490de5afebd19aea2e8ba96c17baed8
MD5 a080e16b8cb01ba8f31a1928b2798f10
BLAKE2b-256 c84975ba9dbe3b966499737309f8c950d8e05054f7e05ecea06fef6f5ce7a800

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c885ade6c95acb4d856c26dd1cabb1983da8f92da172607193ee1ffed01e512
MD5 a30b437d443bc4d50571b34513395184
BLAKE2b-256 3281937a0557c76245b5038fd22a4ac066422b7ce04f187ae9dcc54d63124d4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3e52592f87daa364a275d4c6b47574f7fa4cb65d5c2315674e41e7a06dd268e0
MD5 d9dd50ce813deb84e8df5889fcb6b02c
BLAKE2b-256 c6c57805adf8f8fd2defd3ab98a2eb86553457a87db3d5fc40091274f15129d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 188b99886aab1bf0e59913f0d1716e13cbada89b3527c99f36972187c428b184
MD5 c188c5b8420b720700413676cc21fc76
BLAKE2b-256 b5a59eb4a29f2e6839061188ce394940cffd3512ec3ade59d5a5b159956b44c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp39-cp39-win_amd64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ef86b86f917cbae3a5482d800363bad34f555dc194568d9b9bda089701776e91
MD5 ceb341c82756fc038e801cd244dea687
BLAKE2b-256 24a6360fbae8b3aebad82e1dc4c6a847678fc394b887d506875ae8e7d0838b5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp39-cp39-musllinux_1_1_x86_64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2a310411cdd1a8e1ae31bcf6d0265dffb5ef4ea0aafd210ae292a89be75975b6
MD5 6bb68b31e0a30664966c814234313634
BLAKE2b-256 7d79a0467ce35fe6e6a5390d3ec7362a3d83f8112f68afd01ab5f18dd8931c65

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp39-cp39-musllinux_1_1_aarch64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd50344e51d71f3b6b98510ef4dbefdd203234735008c5342b794528879ca111
MD5 63de218ea641995f0a0642dff285ebe4
BLAKE2b-256 7c01f4e270a682688d2af8a6ca7bd9d7faac0cf8446e166d5c65098531b6dcab

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 056ad348bd88fe9d291042d38672638e57aeac4685e43c8a98cf1873db989a54
MD5 1e574e4c7850d1dbe0fe891cdf4ac8a4
BLAKE2b-256 b83102d9af3dc89019a4c961b3a3ca72a2d98ae3eb30293cf54d7801c805db79

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d423c84fc4d04a418e27e3041dbe026b0e1faee0a3651b654ef04b5fae5f3d9
MD5 6ce3bfc33dcc90fd2b3697fbc77f686a
BLAKE2b-256 f0f02460628cca04dfa22a4e74a8dad06bc432d2aeca60ceedcfb45b32a241aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7116f766816ad538e01648a80ca61338b219e26a5ac708e2a1e4211208fb65c2
MD5 fb38bed167255109cfcf2164a7e19ab3
BLAKE2b-256 051c8531f08497959d6892700099bcecfa0625087f4c248bccf491cf66a8b87f

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e3ff59c782a612d4ead7c088d7263b5fda33a79e2565640a028233d2265a157f
MD5 c1dd2ee3e6ca798689c2404bb803bb93
BLAKE2b-256 575a98c3c0507520cfb07a6f79d08078a53e73ca49ed36142d515015f5fbc738

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp38-cp38-win_amd64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 62ae48747b52e386a3f5808d59b8372151a9a4cb2415a44c5d4206b769de2cef
MD5 631517a1e8925585fcb504ed57efd94c
BLAKE2b-256 10df21e2b1159133e5282888a524aaaa4fee8f75afd926e99f079e9e80ad5945

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp38-cp38-musllinux_1_1_x86_64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3dfd391187241abb816822acfb90523c4eb52411feb781b76c9ed0fe79a44ba2
MD5 6c07f32a693b848d1dbde10cc3edacf8
BLAKE2b-256 3864463138fb523cfdd9bdccb6fc2cceed26309a731b1c489cd900968afd13fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp38-cp38-musllinux_1_1_aarch64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8947afdec878c12f259625e2dcf0bda2ea138f20105c51b2be8eca38af8f8838
MD5 9b370570c846fc8eb7be6d8eeb0e7aca
BLAKE2b-256 fa22547ab4bf25f13f6e54c061ecacc485d8b265cf5d810ecd7b5e4e2badf949

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b0a6eb0beced9a554e22021899854b2780cfdfd16fd4b79a4fc906ce489c150
MD5 8621c107ac2cd3d8e16731ec7de56133
BLAKE2b-256 3cffc2ce54534ce6554ec9f1fddd5cf9039ad6fb98cc0bf0636780864dadc2f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94e8071bb26e28ff3ef92643a08c6b0bf000029383f87334c9ffa2674d5e8671
MD5 2a68432093717aa21a01bc581bc2a85e
BLAKE2b-256 ba1e1fdaff2f01e7f02e61e55b2e5a99e137991e56dc4062d8a42ac57de6f99b

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: python.yml on QQSHI13/min-html

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

File details

Details for the file min_html_onepass-0.18.4-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for min_html_onepass-0.18.4-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a3ea6f5cd03b50a165cb9dd30792b6216b256286a5530d11314572f829ad03a
MD5 46526f230a4a956e49db4c5502a9f064
BLAKE2b-256 ff2d7236bf9837f2d2839013be9dd4cc8383ae06ae17f548bb968d77aa3ee492

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html_onepass-0.18.4-cp38-cp38-macosx_10_12_x86_64.whl:

Publisher: python.yml on QQSHI13/min-html

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

Release history Release notifications | RSS feed

This release

0.18.4 This release

50 files

0.18.3

3 files

Supported by

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