Skip to main content

Python bindings for the Go minifiers for web formats minify, see github.com/tdewolff/minify.

Requisites

Make sure to have Go installed.

Usage

There are three functions available in Python: configure the minifiers, minify a string, and minify a file. Below an example of their usage:

import minify

# default config option values
minify.config({
    'css-precision': 0,
    'html-keep-comments': False,
    'html-keep-conditional-comments': False,
    'html-keep-default-attr-vals': False,
    'html-keep-document-tags': False,
    'html-keep-end-tags': False,
    'html-keep-whitespace': False,
    'html-keep-quotes': False,
    'js-precision': 0,
    'js-keep-var-names': False,
    'js-version': 0,
    'json-precision': 0,
    'json-keep-numbers': False,
    'svg-keep-comments': False,
    'svg-precision': 0,
    'xml-keep-whitespace': False,
})

s = minify.string('text/html', '<span style="color:#ff0000;" class="text">Some  text</span>')
print(s)  # <span style=color:red class=text>Some text</span>

minify.file('text/html', 'example.html', 'example.min.html')  # creates example.min.html

Mediatypes

The first argument is the mediatype of the content. The following mediatypes correspond to the configured minifiers:

  • text/css: CSS
  • text/html: HTML
  • image/svg+xml: SVG
  • (application|text)/(x-)?(java|ecma)script: JS
  • */json */*-json: JSON
  • */xml */*-xml: XML

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

minify_go-2.24.17-cp314-cp314-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.14Windows x86-64

minify_go-2.24.17-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

minify_go-2.24.17-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

minify_go-2.24.17-cp314-cp314-macosx_11_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

minify_go-2.24.17-cp314-cp314-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

minify_go-2.24.17-cp313-cp313-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.13Windows x86-64

minify_go-2.24.17-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

minify_go-2.24.17-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

minify_go-2.24.17-cp313-cp313-macosx_11_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

minify_go-2.24.17-cp313-cp313-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

minify_go-2.24.17-cp312-cp312-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.12Windows x86-64

minify_go-2.24.17-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

minify_go-2.24.17-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

minify_go-2.24.17-cp312-cp312-macosx_11_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

minify_go-2.24.17-cp312-cp312-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

minify_go-2.24.17-cp311-cp311-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.11Windows x86-64

minify_go-2.24.17-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

minify_go-2.24.17-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

minify_go-2.24.17-cp311-cp311-macosx_11_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

minify_go-2.24.17-cp311-cp311-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

minify_go-2.24.17-cp310-cp310-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.10Windows x86-64

minify_go-2.24.17-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

minify_go-2.24.17-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

minify_go-2.24.17-cp310-cp310-macosx_11_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

minify_go-2.24.17-cp310-cp310-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file minify_go-2.24.17-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9fe29d619685718c7ef727489032149585a4cc49dc0cb1a02e4659ccd9b81130
MD5 c5dcc5d0d77142cff8f72ddee6a0e20d
BLAKE2b-256 2959219041e0b30349980b06b6e61ed9407509def10897d835207ba145173b50

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp314-cp314-win_amd64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 489bf1404bd529b933b0efd68d4b56417cd1c698001093f469b3928d44464363
MD5 ab32b7418eb4d3b32383d56d320c0683
BLAKE2b-256 74b0b2ae87a9849f8e408f1db21aefc55bde87dbb69216b9a0a8e43b048ad27f

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a6afe13522a0015d1fd56ece9a29c0caf539bfcc4f733dd73820a40993bed7a1
MD5 d4934ed6bf2ed2a665ad492da6e85591
BLAKE2b-256 1544ac27ed591b32dca4e74768d7ef21db06aa740082918f2c09753a9553be26

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 36526057103846b9a00ed1224a3d08403b000765a23bab7cff50aebcdff89ec7
MD5 0c41a07d8a4787bc52df25769b589453
BLAKE2b-256 54a9bbf04df65972417c482207484d41d5296eab05563a05677d7c6617b3581f

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp314-cp314-macosx_11_0_x86_64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a49518dcbb05ac238c64849b9d5bb5767be7ece389df60cec02f4f8aa447231
MD5 164c2e81031aff2d20d6d575310d70e6
BLAKE2b-256 8d59e9049476c7a82ad1f45d2f6ee003e87820c9bd5c9eb85a012960f50db546

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 623c0d7dc65dfd77d17521faaffe27caa30b334517617e7397cab8c6194d65fe
MD5 e7c58b57dc24276a33194471f3650e1a
BLAKE2b-256 67e0a5a2bf93151d8bcfa9bcb41466d7689f987753d4071becf5b885a1b21d0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp313-cp313-win_amd64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5d4ef8d6015c2bfc32141898db33e45bc8450af93066d9e4ab1b076b5409ae04
MD5 877d5239db057372d50a62955024c26c
BLAKE2b-256 780569ce4e662b59cef62555652ae5efdd110b299baca30b3d7853b40d591c3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a643bb923a5aaa1d01200653f7aa7c8c50252a72801e6098288153dc06a4e40a
MD5 59b56952477a8f58af42a659d7301077
BLAKE2b-256 a7e52ceb81c619336604a68456b65dcf717b148b95fe94b79e73f576798437a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d3400a3d4cb99488bfbb01d8ea76351107a015f7a1552505d14ea2959d810954
MD5 71d5a1ed067db3e6a4399c019c35f2c9
BLAKE2b-256 c768dfcad026aa795539541f75ae078c2ceeffe24b5ddfed6492b0055934c78a

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp313-cp313-macosx_11_0_x86_64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae3b3ffeaa96ae09d09243b6058b00a6718e69ad2bc8f751527af3a8f71ba8e3
MD5 3b61ded4b9b19a61f76b30512f0b1b1e
BLAKE2b-256 52b68dd24e3150698ef56d51d12697039e95b7ea406e6bea3c129dbb41206e7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c3ca9cc2c9c7f4ec1779dde2eb059e61cc7ebef8f28bd7cf4ed3f3f153f64412
MD5 3e4b2ade8a87c58e1c2e98b43365b2a7
BLAKE2b-256 faa278578ff8868828b02d387cd774c378947637c8c888c268f5cb48cbee3a1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp312-cp312-win_amd64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94adc9e8da32bdef7711aa733ff0edfb22f938d849797b8a8ecae7e43983a7d2
MD5 912373ddcf6d9971ecc0274f00a55ae0
BLAKE2b-256 37c59341b4520e8d6196269d497bd912b5695c52eb4088a165ded8f1a23b2040

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7386c582d4f604819066bf037ce0271285c81cd8a791edc55e25e789cc699e0b
MD5 9c07f77456efffaa97c2881fb02c5003
BLAKE2b-256 fad908b9e691c5d57f26d4bbb39c4bf035d93ceacf756c69ec9a534af82f89a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f0042bc4a76384604bafba347b927159a529e20c97bf3fc13c3cb99fe037839e
MD5 739c1978e5717f120cc0264a37ca3e28
BLAKE2b-256 348a2f1f57ebc73eb31387b3d1b01c27c3ac56582fcb55bd1a26a81efe923479

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp312-cp312-macosx_11_0_x86_64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e7e46acb98d7f65145e1079a5dfbeb0ed6750f4cb17748b78c7427b4dcf88c2
MD5 710d6b1e21606ff3d264395005c1522c
BLAKE2b-256 5670c4437f33b0e65c94713dcb347e40751b1ab07ef0af3f87d39cd8a4601c4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b1adbe3db9d1b05fb5e129eeb45c0eaa3465c479fa01c6027497b962d8f6ddd2
MD5 fdeecbf14e1e6e734e54f09c02f20495
BLAKE2b-256 7c62af62a30ef07ccb5a0f55ce7647e153d6f2843d2debbe9ceae4653e42d37a

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp311-cp311-win_amd64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f7799864a216ef9ac68c7f1f2032624b36bf392a4c222ad3c90c662ded092f01
MD5 5472434a1e121455a6c8933e5ab9f5f2
BLAKE2b-256 dc30fc7a6f7133bed675d44c96d1e497b3baaaa5e68fa089ae026587af8d86ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ee8619ab4ae77f60a727834b77027219d2dc040bc25db5f56d21d0b69dea366f
MD5 c316c58823cd8f218d7bdf72b5a76280
BLAKE2b-256 f5ae05e90fbb0ea73592b6ef404d26d5c42d3418fb226b62ad93c80459eb4e37

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 739e5606bb903c36be2c31057fa060bdf4c8e9fbf8bc2dd9eef420aca4cd2592
MD5 47f731f8cf760aa8102b2ae8f4eb654c
BLAKE2b-256 52776d3d6cc00dfe16eddf1b162dca5975f06b7a6b2e3052a230dd4438c95e2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp311-cp311-macosx_11_0_x86_64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df88d4f20b2fc97ec7b3351ecf09eddcabdf4a3d899f4c5b49845b3bc06d39c8
MD5 2c3c6a841bdbda6401ff5ded57ca1c7e
BLAKE2b-256 927a93eb4905c69ceaecc192fc4a49aa8b79e8767dffab34e74ee5bca2eed6c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3b3ea0d4f2ea40edcc517c0b82552601c1d28c02781fb45e9deeaf64ee6b9f15
MD5 473a9bca02684227a760596c88b92cc7
BLAKE2b-256 ab5f91389e203a3925af4ea363946365afe1235306791d5fffc393b12299ba47

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp310-cp310-win_amd64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a9d92769fa29d0d6c9d993e2d2d45747e96af325c7e32c0fafd19b14542ca70d
MD5 68744d2b716d6e64999f5bea5d5fab51
BLAKE2b-256 a5e216f51cd310335b49e4bdf217ad956cdd29e82dcec7adbc6a5ee2230082b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fda77174620b4f2929f3217692786bc351eaeea346ecc161657fad3d5d4edbfc
MD5 a685cd3a9633e2167e6883816a46b58f
BLAKE2b-256 f2108a6bc6f316f7f4d985da1ac9814efa53121ceadb70ef34c4d1235db02f56

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 2ae4dc69cbe5f8bbaa1932fcc14f31b497d198b32cf57fccb92d0c7893e7980d
MD5 d96b4e2800f8affa1334ebffc406d81a
BLAKE2b-256 b8ae48a171343703bc3d36134cb834afa100858308dbd43ea88927c5149fc3b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp310-cp310-macosx_11_0_x86_64.whl:

Publisher: release.yml on QQSHI13/min-go

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

File details

Details for the file minify_go-2.24.17-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for minify_go-2.24.17-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebd10d1a26743ae7a84ecc3bafe80bd92b057ccca430cb5e7b14b6709411c4cb
MD5 c5595da6582194c17e1dce52349a33da
BLAKE2b-256 428b270f9a7e828ae6922e5032d5e25b9c282eb373d8e9743357c08fd4195cc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for minify_go-2.24.17-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on QQSHI13/min-go

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

2.24.17 This release

25 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