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-0.18.4.tar.gz (98.5 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-0.18.4-cp314-cp314-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.14Windows x86-64

min_html-0.18.4-cp314-cp314-musllinux_1_1_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

min_html-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-0.18.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

min_html-0.18.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

min_html-0.18.4-cp314-cp314-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

min_html-0.18.4-cp314-cp314-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

min_html-0.18.4-cp313-cp313-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.13Windows x86-64

min_html-0.18.4-cp313-cp313-musllinux_1_1_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

min_html-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-0.18.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

min_html-0.18.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

min_html-0.18.4-cp313-cp313-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

min_html-0.18.4-cp313-cp313-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

min_html-0.18.4-cp312-cp312-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.12Windows x86-64

min_html-0.18.4-cp312-cp312-musllinux_1_1_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

min_html-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-0.18.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

min_html-0.18.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

min_html-0.18.4-cp312-cp312-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

min_html-0.18.4-cp312-cp312-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

min_html-0.18.4-cp311-cp311-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.11Windows x86-64

min_html-0.18.4-cp311-cp311-musllinux_1_1_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

min_html-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-0.18.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

min_html-0.18.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

min_html-0.18.4-cp311-cp311-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

min_html-0.18.4-cp311-cp311-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

min_html-0.18.4-cp310-cp310-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.10Windows x86-64

min_html-0.18.4-cp310-cp310-musllinux_1_1_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

min_html-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-0.18.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

min_html-0.18.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

min_html-0.18.4-cp310-cp310-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

min_html-0.18.4-cp310-cp310-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

min_html-0.18.4-cp39-cp39-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.9Windows x86-64

min_html-0.18.4-cp39-cp39-musllinux_1_1_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

min_html-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-0.18.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

min_html-0.18.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

min_html-0.18.4-cp39-cp39-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

min_html-0.18.4-cp39-cp39-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

min_html-0.18.4-cp38-cp38-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.8Windows x86-64

min_html-0.18.4-cp38-cp38-musllinux_1_1_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

min_html-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-0.18.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

min_html-0.18.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

min_html-0.18.4-cp38-cp38-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

min_html-0.18.4-cp38-cp38-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for min_html-0.18.4.tar.gz
Algorithm Hash digest
SHA256 96e286ea0b23359fd08fb44675686bc85b55e8ab9394a0625c8c17680e4104b1
MD5 e931db42ea465a12c42506a147ba57d8
BLAKE2b-256 fd6465e6d5d1ca81cf83c85258d68e9e18d1c931d57966e6e0586e66eb166b7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: min_html-0.18.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for min_html-0.18.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 734626de9a619fc12a1ccde2462fa0df4b1a295b51f3335c395e16a4071ef6f9
MD5 de5157a9ba5d7a9d9c1cad18ad9ec7b4
BLAKE2b-256 69b1e74e652efcd74d16dc5a0b5bb25f859c198de2a2d2244f7b4ef46189367a

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d7e2eb39aed196f477664aa417e8b6adeaac85e95d08113a1e79f4b17ead6bcd
MD5 6ac2233f1c2da84758c882c981544906
BLAKE2b-256 d316743858fc2f5703a4689072ac1dfd40108d4df0cdf4d3236a3c6102bb5bb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fdece24d38bdbbabbaa5a21315a38e9a78229ed76a94eb8da38025b6f00cf622
MD5 fe5adb09e3dd9e309d1d572a322eaed0
BLAKE2b-256 fd4482a5152f2cbd073e4d5a3dd667db0d59dda6429a600b826fb16b87a17d1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc8349941c0d4241d16dd8e3fe91d3ea2f6bf896da5f534bbfc2184b5469f058
MD5 90912d16ccfb22ea07446c50009c409c
BLAKE2b-256 0cc1ad7d193705937c0aa23b16eaebf111cceb896621c20d0b3bfcfa263acdd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b822b5732e40835acfb073258fe34a8906d7f300df4e0448051d7b06aa8ef598
MD5 d84060cba866000766f15244f84ff160
BLAKE2b-256 1658f3d79f48cc0bc165607550d81a71984e1f24857ba9c6e43000ed62dc9c44

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98370fc842dae4339a8d7e96bed18bc51d68ca52add3e3098447e7a9bb464154
MD5 8b589f4d145c42778af3644e1534d625
BLAKE2b-256 5672b45e24cccf5218e10b220354caa69b273ed91524d8c88e6c5f6a850470e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0be835a42b61abd6ad0363158a1d56cfcd33f2af6d853e8bb21843200d0b4c53
MD5 c47ed8be969ea07d14be043fd33c127d
BLAKE2b-256 0561ba0ad348f12d2afe3ccbf354184fab40bbd8a784f440509349882d9bad31

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: min_html-0.18.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for min_html-0.18.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7bc29f78507bb9e6f4060fd0c187e8896cc7aad1e471473df5d833a47ad2f702
MD5 7b32761966b82f15b98277463f5cab6b
BLAKE2b-256 381858d3f237a6c72a3c78833c1218de2ef414c19812562a402c46509db1956f

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 494d0394f1e59e68bde41ec6f2bcff0df1356d157dbccb3d35bb2ee47856fe03
MD5 28887b4d7619569626515d878cfd2bd2
BLAKE2b-256 25f7bbd9e7d444c976c88cb9aaf941340e84c724470ac6b7b5bc0de91537d313

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d5cc2eb91dcf7fff6659abb5d8668c803c87e74bee8859687d698bbede5f1bd1
MD5 e71a06a251c5d83a935eeeeac90f818d
BLAKE2b-256 396b2d25984be8458d2e26f66d7ed7ebf93b0504fc6d8ff1c7c43df1ef183e1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be8b1e2a5253fd33dc9f4c4f0eb2797d19adbb4422d4af95e5e557f8d646029a
MD5 3018962f9020f9a2ffe2ff24a000960d
BLAKE2b-256 6e82769bed449d506fd0646ebd0836e1cccf25936ac9c86d870ac40deaf81844

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67fa1e7af07add8806639259aafb35834bcb3497e10f4c5a1dc94486210ca299
MD5 2eb133cffdf2254b27245dc4dbd001bc
BLAKE2b-256 8d660ba8d766a00697de713e64543f7f9a1cb28f647ab7e50004a7a59f0db08d

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7ef6ecc2a270e02142a25bcbf8803771616db2fe8148862949d9d13cf78f51c
MD5 474b62d4b5b3fb1770bc105af156fac0
BLAKE2b-256 fb0c0ece17b577826be358c6b96dfe249ff3efc5bd34b796799b97759ec97e4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 00008a303495bc8d1b59cfce6d550780fe8ff226e0b2a272f3986f132feb2758
MD5 23ce2f01280385af4689bc5a05ffa10f
BLAKE2b-256 1bb781de22cabf2bb1ecdc37f95b411fcc28257e7b15143d064e75102067377a

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: min_html-0.18.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for min_html-0.18.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7b7c59036b0c5c7af72bb3b9059698d458ae10e7d14e370bb53d96561c005232
MD5 fd27d7b9f0634dc4747ff6c0dae8e3c1
BLAKE2b-256 5b61b6e9ea70e64621e0aa16a6eb014268dd96d0ceded014b6d80fb7af2bfb08

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 585d7aa0918e1556ac090cfb36dd7ed7573b1178f0ddd078dacf582c52ce8604
MD5 85b5482084633a5600e95284ab79d3de
BLAKE2b-256 c3cb608eae2ec0580900950bc8f4b766f8e9af82bdee3b15f76de69127d907b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9a4f401cd594cf2f57dedba49eb878da718ed8f1db6048e08ecfc8b90eb50e17
MD5 5748f99023645a757d3966fd3eaa22f5
BLAKE2b-256 39ac19223ca2844303c907b3f6d34a6631112b006785c7d5561e51b7e1bce9a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ead44ab72d5d426485787a8a61315a7b40875086ce5e737566e091bdd341e615
MD5 3f259bb0d6a06195bdd30d7f07f5bb29
BLAKE2b-256 bbfd435da3908508a4330945f1379b5643ce05b082ab1a5f359deb1c462f194b

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 981e9c30c71ec22d7950495a1c831d069a894463a925db6d07f28e27e3c93ede
MD5 e3c98d160118135406d555411c57b58c
BLAKE2b-256 ac4a9124a1b3cc829837e02f64f8b1bfb825c6f5acfa35746d93ef688d50d53b

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06f8523bd3ff0ebe0227be9a2573b3104d07b44c2eefba85f6d594cae4399b49
MD5 b1a6c241080f175b9988929b5768abd7
BLAKE2b-256 2066dfab6a938602a85bdc3c57eb5fff33526f91687665f9518c1e05b9346d74

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c967d9931c2561a709e6e529ba32ab302e44cc7917a379c35087cf7d206891f4
MD5 56ed6140038c42fae8e55ba8d99c0f64
BLAKE2b-256 5a59f0c9eb0dc2056f723bb09624ef5db0699707ec91259f4322a7b3f164f3be

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: min_html-0.18.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for min_html-0.18.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 130fd3d41d54e38086befe406f1417b4575cdcfa1f76e32526eed6b447a21dde
MD5 899f49dc9b4cdc816b9ee7ee8c0b2295
BLAKE2b-256 eeb55c5ed443223fa42960ebd3ec9c96db4d31986c888abd46faad488f623436

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7282bbee00cee5931210950fedbb4fd9e9dfc7005f3d37dfa7b3ba6f0f2cfd49
MD5 1f4867299e91532bdab601fa2cec91d2
BLAKE2b-256 710e0c048b4068b9ef90a5f922e4b1850cb88d587fec9e5caefe8fbfccdac68a

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 562cfc43e3eb40f86fb847c2316e7933ec039b9ffaa9de6864c07f1b24bf96f6
MD5 55e2730b52a753cb2f05818999953729
BLAKE2b-256 a0900bbca3e3ddffd84f3c2cf818bfa962d1d88e3afe3176589976c135d9e681

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 868347501cbfb6130419c1090dab8cfeecfaa0df49c31b4225cf3d917c31971d
MD5 5675c976a02176bbaf4d8339a78c6e66
BLAKE2b-256 08804711af1250ca4c646e6b1dbd3ec62e311b37e2bf45f38b52595669f9eb00

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3cdf44fd8bacbc99aeba4461aaa79fbf88a8b3be63ba92db72da15d59017764
MD5 863e2a7052344b644217efaa5a286971
BLAKE2b-256 fe5a09347da09d53470ba84906218a54eca8418d5acb7a619ae09c898b8b220e

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09467d9b2e5a363990678aefd4db99656ca1febea7478012b813b6a15b4ec72a
MD5 ef539fd7839939f2c5e542f5f06895a4
BLAKE2b-256 abe862b02ea90f48f8d7da61ccda820ea481caac206435cc576f6f651289c4fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b52bf3a088fcbe04d16ce9321d7a116d1783db01ab115dfdbe9fd291874e5bc1
MD5 db9b806ebb137f5e141128236a5e57f6
BLAKE2b-256 7ccea18998fc43dbb7b4391e054e0b51645c3a48586120baa401e58f796f6acb

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: min_html-0.18.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for min_html-0.18.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 89a125b69671654cf5d980dc3b6299800d37a49a7c08a57b93fd4ba13e5af7bf
MD5 d07907abeffc46722152452890f294b0
BLAKE2b-256 277bd4f957f7aab761eeb695f6f3eacdcd6753f4f0162aa4118335c40db0287b

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5ed102c7158d9ecbed8df77222056cc3d6d400419284dc8adf39d6168311f938
MD5 4e6e6370f8c0d56cd0d3ba93a744e9a2
BLAKE2b-256 9c698e2458d5634fc07dd4a9a4a5a8e6eb9d5b205e16b886c19bdec66621c63c

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 365dde50c05c1dd91a77d0632c79538ec1d8647a06dd3e2bbc8d34fefea53a6d
MD5 e368910f742071d33c8a5525891174f2
BLAKE2b-256 f7542b674adf3bcf8cf6909fce0d347ad6c05e38019ef7a996dde956bf3aa7d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c63c2c5cfa32acdcd29156dd2d30b7fe8efaa8428afeb37533e427e42a0329a7
MD5 9fbb58ae66cb4e7afcb25fc451f11010
BLAKE2b-256 5254c472147782a778e4f350e9cd96ee6eba13428014eef243db97b4a1810e00

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8022040ea02f77be1c95b49de4f0ac49c07ace76139a4c1827271088b29492d
MD5 663a4a1ae198f04bb606522395955bc3
BLAKE2b-256 f6cffc80bc57b0db2f77e136176461bcf6914b4f809acb62ce63256306abed0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83201fa0e23b3c1f49763d093295ebb90b21a90532fa7f1c97484334fc811dde
MD5 22e4a84cb42af8a34586e3c75364b23c
BLAKE2b-256 9c19ba10ced1639d34bcdfea8a3f0ce7300ac548908e2b7383ca04b201484219

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5121ead970710d59c9f84d124f9c66f1c75e41fbdc2ba0180368864d53bd46da
MD5 da47bd4b2922d047da29bddc77396026
BLAKE2b-256 8608207466c1280125e78b64da30d43658061421fc5bc35a9d9e3e2418c06779

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: min_html-0.18.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for min_html-0.18.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2c2d03d92ad5a63447904417b6058c0f8b26323676c39346e1248f0d528406ac
MD5 f33ced2b20eb1f8af8968985a8e71730
BLAKE2b-256 581b452e0233b30a1129bd154f1e0a8ebece74323d35e8f96f9387383963eabe

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cccf6c708d9dbf1696da7af33488c5f3bb14ae06d7887872a4e50d74540e3446
MD5 2fcad25e3564048a56c3c5877a2b2ebf
BLAKE2b-256 9b3163eae645359d12aa99d86422e9b47e525aacb05e94436fa5365f92544d94

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 05eb12e69bc62c2845af0003eadbe4575f7ae8bb7500e2a3a4c8b01279a13c22
MD5 b5f62cdac319508195e3be3d3221c663
BLAKE2b-256 15d9bad57b0870ff1eb7b62407b0d7d31083335961d1510cb2a26625045ca8a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2081e45ae6baa22fdc81e01f396e0d2a1248f23a7d43b12c04272a21d92078b
MD5 164df86f2d4dad5f69020f8e2c90c4ab
BLAKE2b-256 fd1ec4c630a3d2b801ac29d44de778278ce2ba70002fc8b70abc71cf2a54d7de

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 947ddf20045338ea079e8e6c2afdcade6205ea33df12608bf345d52ef92577ed
MD5 f74dbb9cc4a92983356a8d009d47965d
BLAKE2b-256 c77b83465d9d3352c95c42b8dba585a73bf3fe87cd768d7804998d50ddcb1502

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 443fa7e537d291362273251cec8282f9cb3226fccc0810fe8635297df4d2df52
MD5 769c494101e7714de9cd6d6d4c3b4c77
BLAKE2b-256 551b4cceca7cb45ac165c1b372e29568f1e94e775a55d68b8a29a4c4599904fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c726be3491cd964a7941a43b33ae7acef68e14d0ea6eec6dc4aa0b178d0ad360
MD5 36d1f19fb3e1aba101d169b216697b09
BLAKE2b-256 fbb216b2c56827c695c9c67f655fda991a533e69d25843a998ce12efec72d33b

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: min_html-0.18.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for min_html-0.18.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c39f18016963b783cdba4c550ddbb868f2b9a1cb337ea4f1bd4a8a9456f29ab9
MD5 d36bffc5399bf2d843c49edb5f3cf26b
BLAKE2b-256 63c670dd41cd95d535f887587505b966df1c5a2ffa517a55af04e8702b911171

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 36f7085611db1b90d1d8d2932252b2a0f3ca08b08a95d575c7b75142dcdae3f9
MD5 701a21baf941d1a3522d46362ab690d6
BLAKE2b-256 e4731d43e4401cad5aba058e5f98ae4b5f5f9d4b52818da7c60e58e302d5390f

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2b3ac7e10cb8e7d7753bcd61caab51dad301858fb368ed080d32a4227b95e7f3
MD5 2803043b88d5ee5815e104e546b92ed1
BLAKE2b-256 6890e67066a05979e15864b073156e47c8f9dbfc085f89618bb2bd5182c04f4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 385531ca11ecc47d1637542d07c2afca66e0fd6b924dc195955ad978756cd1ab
MD5 407f4cd3f6e8e5e414faa4cad2d4a2a4
BLAKE2b-256 2c68fad6c5b43d8987448c747284e5b05354a69c8b3ace30572c3a51633a08cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80afde0f50a2cbecff73a6977f51c1cab4966575ee58639a9b1b5f87e6425e52
MD5 c63b416641fcd5a815b506b7f75a9929
BLAKE2b-256 e67926adcdd8851533d37967df2a11bf5831b213a875fd596ef044668ea804ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6ffac140218183871dbfbe7e9a89935f5bf5e0b3ecbf786b458b4606176bb1d
MD5 0d609d6032ed62d8ad0e3ecea513ec33
BLAKE2b-256 05c248809ceb0c7062439b6a806ffa7b0899f3180b3564527265f1e35846da12

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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-0.18.4-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for min_html-0.18.4-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 593796063aae54a7f78b4ed2d4ecdb268b1b3a8591790e2b381b8739245bb746
MD5 422abae85aeab6e066d80d9c0fc3fa45
BLAKE2b-256 a6cf97caba4c9745a30b263dafc38a6a7a9270bc1af17d7bb1a1cf34ec42dac8

See more details on using hashes here.

Provenance

The following attestation bundles were made for min_html-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.

Supported by

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