Skip to main content

This is the MiniExact exact cover solver, implementing Donald Knuth's Algorithm X, C, and M using the Dancing Links technique.

Project description

miniexact

A minimalistic and efficient implementation of Donald Knuth's exact cover solving algorithms using his Dancing Links trick . Currently supporting:

  • Algorithm X
  • Algorithm C
  • Algorithm M
  • SAT Backend (Only on Linux and MacOS)

Features:

  • Web and CLI version
  • Three input formats: Knuth's DLX, One inspired by Donald Knuth's text representation, one by DIMACS from SAT solving.
  • C-code is kept as close to Knuth's description as possible using Macros, but has a different memory layout.
  • Extensively hackable
  • No dependencies
  • SWIG Bindings support (if available on the system), see the Python example.
  • Package on PiPI with builds for Linux (Intel and ARM), MacOS (Intel and ARM), Windows (Intel and ARM), and (manually) Pyodide.

Future Goals:

  • Add the new Dancing Cells algorithm based on sparse sets as known from Christine Solnon and the newest TAOCP Fascicle 7.
  • More comparisons with other implementations.

Usage

Either use the web-version in your browser, the latest universal APE release, the version on PyPI, or compile yourself. The command line tools expect the algorithm to use (-x, -c, or -m) and the input file(s). If multiple files are given (e.g. using your shell's wildcard), each file is solved separately.

A solution is the list of selected options. You can also print the options as they were listed in the input file with the -p (print) switch.

In order to enumerate all possible solutions, use the -e (enumerate) switch.

You can change the heuristic used internally to a naive one, but the MRV heuristic (the default) is a good choice usually.

Python API (also usable from C and C++)

The package exposes a simplified API to Python and other tools trying to import it over C or C++. Here is an example using algorithm C to solve an exact cover with colors problem:

from miniexact import miniexacts_c

# Initiate Solver
s = miniexacts_c()

# First, add primary items. These calls return integers that you may
# use to reference the items later.
a = s.primary("a")
b = s.primary("b")

# After defining primary items, define secondaries.
c = s.secondary("c")

# Now, add some options

# You can add them using the list-based syntax:
maybe_enabled_1 = s.add([a])

# You can also use multiple calls to add(), ending with add(0):
s.add(a)
maybe_enabled_2 = s.add(0)

# This is how you color secondary items:
color1 = s.color("test")
s.add(c, color1)

# You may also use the string-based input to make things easier:
s.add("c", "test")

s.add(b)

# Adds always return the option index they were added in.
forced_option = s.add(0)

# Now, call solve:
res = s.solve()

# The return code is 10 if a solution was found, otherwise it is 20.
assert res == 10

# You can print the solution directly to STDOUT or extract selected
# options.

s.print_solution()

# The returned option indices always match the indices from the add()
# calls.
assert forced_option in s.selected_options()
assert maybe_enabled_1 in s.selected_options() or maybe_enabled_2 in s.selected_options()

# Each additional call to solve() checks for another solution.
res = s.solve()
s.print_solution()
assert res == 10

# Until there are no more solutions:
res = s.solve()
assert res == 20

# The problem can also be serialized into the DLX format:
s.write_to_dlx("out.dlx")

The code above prints out the following two solutions:

c:test2 c:test2 b
a

c:test2 c:test2 b
a

With a being the first or second option.

In case of an error, the function returns 0 and sends its handle into an irrecoverable error state. Errors are also printed to STDERR.

Knuth Exact Cover Format

This format is inspired by Donald Knuth's notation in /The Art of Computer Programming Volume 4 Fasicle 5/. You first list all primary (possibly with multiplicity values) and secondary items, then you list all options. This format is well readable and easy to generate and parse.

Example

< a b c d e f g >
c e;
a d g;
b c f;
a d f;
b g;
d e g;

Input Grammar

problem ::= primary_items [ secondary_items ] { option }
primary_items ::= '<' { primary_item } '>'
primary_item ::= ident [ ':' u [ ';' v ] ]
secondary_items ::= '[' { secondary_item } ']'
secondary_item ::= ident
option ::= { ident [ ':' color ] } ';'

Support for DLX Notation

If you use the DLX-style notation, namely having a | symbol to separate primary and secondary items and using newlines to separate options, the parser behaves the same as if using the format above.

It is not supported to have an item called p as the first item in this case, as this would trigger the DIMACS-inspired format below.

DIMACS-inspired Format

This format is optimized to be generated by tools and is a combination of the DIMACS format known from SAT solving and the requirements for Exact Cover problems. You first define the number of primary and secondary items, then you list the options below. No item names are supported, as only integers are used. Colors can be given as negative integers after a secondary item was given.

Example

p xcc 2 1
2 3 -1 0
1 3 -1 0

Input Grammar

problem ::= 'p' ( 'xc' | 'xcc' ) <primary count> <secondary count> options
options ::= { option '0' }
option ::= { primary | secondary }
primary ::= <int>
secondary ::= <int> [ '-'<int> ]

Compiling

Reqirements:

  • C Compiler (e.g. GCC or Clang)
  • make
  • cmake
  • Optional: SWIG and Python 2/3

Create a sub-directory, generate a build script and compile the tool. Use something like this:

mkdir build
cd build
cmake ..
make

By default, a Release build is created. To develop the project, using the Debug build is recommended. For this, run cmake using cmake .. -DCMAKE_BUILD_TYPE=Debug.

Project details


Download files

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

Source Distribution

miniexact-1.4.tar.gz (344.0 kB view details)

Uploaded Source

Built Distributions

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

miniexact-1.4-cp314-cp314t-win_arm64.whl (140.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

miniexact-1.4-cp314-cp314t-win_amd64.whl (165.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

miniexact-1.4-cp314-cp314t-win32.whl (124.7 kB view details)

Uploaded CPython 3.14tWindows x86

miniexact-1.4-cp314-cp314t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

miniexact-1.4-cp314-cp314t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

miniexact-1.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (153.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

miniexact-1.4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (144.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

miniexact-1.4-cp314-cp314t-macosx_11_0_arm64.whl (126.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

miniexact-1.4-cp314-cp314t-macosx_10_13_x86_64.whl (143.5 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

miniexact-1.4-cp314-cp314-win_arm64.whl (136.3 kB view details)

Uploaded CPython 3.14Windows ARM64

miniexact-1.4-cp314-cp314-win_amd64.whl (155.1 kB view details)

Uploaded CPython 3.14Windows x86-64

miniexact-1.4-cp314-cp314-win32.whl (121.3 kB view details)

Uploaded CPython 3.14Windows x86

miniexact-1.4-cp314-cp314-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

miniexact-1.4-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

miniexact-1.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (157.5 kB view details)

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

miniexact-1.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (146.3 kB view details)

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

miniexact-1.4-cp314-cp314-macosx_11_0_arm64.whl (124.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

miniexact-1.4-cp314-cp314-macosx_10_13_x86_64.whl (141.2 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

miniexact-1.4-cp313-cp313-win_arm64.whl (133.4 kB view details)

Uploaded CPython 3.13Windows ARM64

miniexact-1.4-cp313-cp313-win_amd64.whl (152.3 kB view details)

Uploaded CPython 3.13Windows x86-64

miniexact-1.4-cp313-cp313-win32.whl (118.9 kB view details)

Uploaded CPython 3.13Windows x86

miniexact-1.4-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

miniexact-1.4-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

miniexact-1.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (157.3 kB view details)

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

miniexact-1.4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (146.0 kB view details)

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

miniexact-1.4-cp313-cp313-macosx_11_0_arm64.whl (124.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

miniexact-1.4-cp313-cp313-macosx_10_13_x86_64.whl (140.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

miniexact-1.4-cp312-cp312-win_arm64.whl (133.5 kB view details)

Uploaded CPython 3.12Windows ARM64

miniexact-1.4-cp312-cp312-win_amd64.whl (152.2 kB view details)

Uploaded CPython 3.12Windows x86-64

miniexact-1.4-cp312-cp312-win32.whl (118.7 kB view details)

Uploaded CPython 3.12Windows x86

miniexact-1.4-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

miniexact-1.4-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

miniexact-1.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (157.3 kB view details)

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

miniexact-1.4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (146.0 kB view details)

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

miniexact-1.4-cp312-cp312-macosx_11_0_arm64.whl (124.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

miniexact-1.4-cp312-cp312-macosx_10_13_x86_64.whl (140.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

miniexact-1.4-cp311-cp311-win_arm64.whl (133.2 kB view details)

Uploaded CPython 3.11Windows ARM64

miniexact-1.4-cp311-cp311-win_amd64.whl (153.4 kB view details)

Uploaded CPython 3.11Windows x86-64

miniexact-1.4-cp311-cp311-win32.whl (119.0 kB view details)

Uploaded CPython 3.11Windows x86

miniexact-1.4-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

miniexact-1.4-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

miniexact-1.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (157.2 kB view details)

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

miniexact-1.4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (145.6 kB view details)

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

miniexact-1.4-cp311-cp311-macosx_11_0_arm64.whl (123.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

miniexact-1.4-cp311-cp311-macosx_10_9_x86_64.whl (140.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

miniexact-1.4-cp310-cp310-win_arm64.whl (133.2 kB view details)

Uploaded CPython 3.10Windows ARM64

miniexact-1.4-cp310-cp310-win_amd64.whl (153.5 kB view details)

Uploaded CPython 3.10Windows x86-64

miniexact-1.4-cp310-cp310-win32.whl (118.9 kB view details)

Uploaded CPython 3.10Windows x86

miniexact-1.4-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

miniexact-1.4-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

miniexact-1.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (157.3 kB view details)

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

miniexact-1.4-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (145.6 kB view details)

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

miniexact-1.4-cp310-cp310-macosx_11_0_arm64.whl (123.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

miniexact-1.4-cp310-cp310-macosx_10_9_x86_64.whl (140.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

miniexact-1.4-cp39-cp39-win_arm64.whl (133.2 kB view details)

Uploaded CPython 3.9Windows ARM64

miniexact-1.4-cp39-cp39-win_amd64.whl (153.6 kB view details)

Uploaded CPython 3.9Windows x86-64

miniexact-1.4-cp39-cp39-win32.whl (118.8 kB view details)

Uploaded CPython 3.9Windows x86

miniexact-1.4-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

miniexact-1.4-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

miniexact-1.4-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (157.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

miniexact-1.4-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (145.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

miniexact-1.4-cp39-cp39-macosx_11_0_arm64.whl (123.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

miniexact-1.4-cp39-cp39-macosx_10_9_x86_64.whl (140.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

miniexact-1.4-cp38-cp38-win_amd64.whl (151.5 kB view details)

Uploaded CPython 3.8Windows x86-64

miniexact-1.4-cp38-cp38-win32.whl (118.8 kB view details)

Uploaded CPython 3.8Windows x86

miniexact-1.4-cp38-cp38-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

miniexact-1.4-cp38-cp38-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

miniexact-1.4-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (157.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

miniexact-1.4-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (145.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

miniexact-1.4-cp38-cp38-macosx_11_0_arm64.whl (123.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

miniexact-1.4-cp38-cp38-macosx_10_9_x86_64.whl (140.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file miniexact-1.4.tar.gz.

File metadata

  • Download URL: miniexact-1.4.tar.gz
  • Upload date:
  • Size: 344.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4.tar.gz
Algorithm Hash digest
SHA256 b39f8145ede58b9c7e59098093bd23c6a13bbe743f0f153f785c2e550eb3bf34
MD5 aabc40c3c8282e833470b19049dfca28
BLAKE2b-256 f24f4a7439cfdf8467a37c11008746c2d6c8bcbb44b93485770cc7e4ccc0d10c

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4.tar.gz:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: miniexact-1.4-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 140.1 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 fed4b0bae54c493658d310574a76e5b580feb52542623d5b39e905b47d3cb581
MD5 5b4f48aad41cae81662cc61db0d41001
BLAKE2b-256 351aa91d330d941018ee232a8e1f15dd39f06117ce32674a1cba087f16475d1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp314-cp314t-win_arm64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: miniexact-1.4-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 165.0 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9f9f0a249ec44a05bc9ee17937363357ee5ac7233dbbf79aa51d3433fbabc753
MD5 e87fc35096a27983a9ff165a81ee633d
BLAKE2b-256 52fea54eb8de0f373e0c09229a0f34459a680206bd67325db7e2b1d62aecd302

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp314-cp314t-win_amd64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp314-cp314t-win32.whl.

File metadata

  • Download URL: miniexact-1.4-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 124.7 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 b1b57ecb185168bd80898868604ced47b2bf3d7b86c0918c730f23b133c04759
MD5 278dbc2524247287d09dec37b96ccd10
BLAKE2b-256 41cdb1552891750a8e4fe04595bcc0690c1a3e08a0024ce26890510763be1f12

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp314-cp314t-win32.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1c2b2c438a637766e3e469b1a74b32ed6db9fa4f8381ad0153911f899e69378
MD5 8d58e1585bae70ff4c525a9a5cf8cd01
BLAKE2b-256 729956055e7b7d401b3851e7d3f00de4d5def875bef588ad78398256b01ace4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44a361594805c9483dbfaa194b516261079f5900b3a81380f0137da8f373cf52
MD5 6ff71cb7906cfe2938077e1233db1a9e
BLAKE2b-256 9180f25e455f941811c3457aeea88eb55904ac41ea683cd9455581148ee5194a

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6aa1be3b921d2b90a0ef6324f5f8c2e1722956885948456d138517667f1eb4cd
MD5 7e1bb1162485be1a3b45fd8b3a6ee849
BLAKE2b-256 c59fb399d3107e88de594461c8b82a09d01a1509d1a49d9f515d7c4db32ffe08

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a502adb887361314643118290b3b03c60dd0606bf963ae87677cf34fe65c5e5d
MD5 933315c04efd02930bc9bce587c3d166
BLAKE2b-256 2f97f756b1cc7b7e60199e06438eb6f85eae265574c59bec8865deda559fc1aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 618ac307ba148eb50b7c12c3d23c74e3c20605982ee9dbc8d94c8ae99c8e64ca
MD5 2231636336d28d570080017c297dd7ea
BLAKE2b-256 478dd7f7a1e1f8d5127927ea0f6d2ab84a71391d0e7b81e6c325810e5aa57e13

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ba0a2ef6e44d160c0cf7a837e468cbd88ed74f225c3426a4b6d64dd57b801272
MD5 d0c957089b66b9a4b2fdab6a841e2903
BLAKE2b-256 680ab942f097e0eb01401e8aba1e59cbbb36c6e9c8bc8568f529c2e7784595d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp314-cp314t-macosx_10_13_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: miniexact-1.4-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 136.3 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a594918d75ce9a7cbb44bc9d123df0db20515c86d94bb4a3a8613a0ebfe43086
MD5 569defc24800825e6ceece054a96cf7f
BLAKE2b-256 88b3fb12b507e1b02314992647071d736d9f587862d6daefa4f9480c633e48c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp314-cp314-win_arm64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: miniexact-1.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 155.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2894a27048c8308d5eb38291746ed7525798f9278b8019f61e556c108a6b2522
MD5 ccd213f1568cae0db4b8f39cee81f09b
BLAKE2b-256 ed17a4e76a11af0d9b4970a35bea88c82f1d088d0cb44cd7365bc67f112a6e3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp314-cp314-win32.whl.

File metadata

  • Download URL: miniexact-1.4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 121.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9318f5c52206ecafdabec616eafd27d3855db02360ea42f58d7ed6732fa4f373
MD5 95f773dd1a9356068a8e06586816667d
BLAKE2b-256 d4be45631cff25c90f416f096fc364a8e52e7f06d26d78d9a40d844ef13b4f2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp314-cp314-win32.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f32854050ae49eaf41d5ebc0f51604e1690b996d9b2f33701e8e255db98fb700
MD5 a817bc7c44441a831f915de71fa8dc5f
BLAKE2b-256 ff30988b19cdf5b91bde98efc2779f91ef5411ad15ba6ccb8539d202907dd538

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd4229e5c145b8a63c6d70ae8343ac8ba1b89246ab11fb435a9d7b6fa025db27
MD5 36e5787e968dfb47e644a4f8fe76d2a5
BLAKE2b-256 3224e9a119feacadb3ac1e17df2f517605813378cb79d49bf0ef011d5ef97438

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2e96f2cd761b34027e847dda1216ee6ec6d9565725fc42064345282751b2ed07
MD5 f86a58007f40fd7deb7b857fef9cdc87
BLAKE2b-256 9806c20fdf53eaaa561c1e6e48fee08c6fc2b0eb6a43ac7c366db13456a1dc78

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 659dbaff60c99af9129243056074c9f70df4fdec62a2f14882792d1264b1a0fd
MD5 1c89a22cbe37c732b9b5857c99fa9191
BLAKE2b-256 84f3dfece31afb33ea5c891145188b6f15341268d3c1a4dd95b5645ae19785b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c186249cb5ecfb70a33b7a87eb6209f89c7a50eee9a6e5b202d23f5424c847b
MD5 6c4abcb545ef0cf096f2eb7272cd3bdb
BLAKE2b-256 a0511faa0d906a97f331c616bfa0f19f76d00db81f5e5673897bf2d888f4eb87

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e3a36e9fbe0d673660539962f118b1265ab0a7ecd23f41c031cc52f47d07e214
MD5 fd8d30ec1c036e42219c8ef8f16dc4a4
BLAKE2b-256 d7222610001b143624ec95d864f6011f715eece46dbd32eb226eef466af1b838

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp314-cp314-macosx_10_13_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: miniexact-1.4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 133.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 63f60a5e779232eca64dce5a016e4cf0cdcae8a8752bad3f26abf9aa5dba7666
MD5 be2924d64a69517843887295d005c553
BLAKE2b-256 94c1de263aea8c4c9f0364edffc331f2f6bd831f17ac43313a101ca918a5fde6

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp313-cp313-win_arm64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: miniexact-1.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 152.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f8d675520e83b3e100ebff0d38d9f5f43768e9a8778f54981ee43d3e12cc47bb
MD5 17a9042ceec0431b852a8933160ee762
BLAKE2b-256 2e5994759f3e892bf79cb1f1b914a3389bfde9f3266f28bbac812fca0bf6b7a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp313-cp313-win32.whl.

File metadata

  • Download URL: miniexact-1.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 118.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6b1d9cc148cbc27b742b656f514f3bfbbb298025ee1c26e179cf573ccd86c0c1
MD5 981e1b5a4e3477e0e78536d87e2fd59f
BLAKE2b-256 0b44abf0219508810959ab1b79144c1c4caaedc4e729e31ec97e0d9ae08ebfa5

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp313-cp313-win32.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 484acad8d8950387d124ee4f2643dc16ffcce2e2bb75df37342f23eac5a79d1b
MD5 eef2137d0418b9113a50b4cebbcc575a
BLAKE2b-256 9924d1ff7b69e48b183b8bc122e306300e6f4e0d93a3b0356f4cd07da9f7ff90

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ece61278b32046bee946997100e1e0ce2344cb99baf7fcea2b828d6f61b753cb
MD5 d210d7ee67abc5d0e64824d321593b75
BLAKE2b-256 6aae72f86afdb6b738dd4af85319422ee5f57a8a9862c39a1be9bcc171ec4dea

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e1d1402f851ab3af132aff76e74b3019deeea79fc41590c0c0cd1288b21b2827
MD5 13b5ac19ba1de5107c6c0dc02a50d550
BLAKE2b-256 92cdf769ae64fb2f8597c386ba333d5081811cb4b4c04c846adb4f221de8c9b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3301b98ea6c9dba8842d3084be54f6e9f6e75cc4cfc5cc9bf0025f470811c51e
MD5 6f66e961322430cc7cfc0e9e95991c74
BLAKE2b-256 9fbe4bd483f79fd9320dd805c0f839dfc32268a2ba3a9b981e843280dc52e83e

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1843243bbe6a7016300a4c3f0c88fb06f7c379b34cf7c2194e86a20b4b33946
MD5 d125015741fc2114c19280788896a08d
BLAKE2b-256 bfa726c2253026a9b278bc1da2bbee7b8955493c9f19fbadb4dee655552cfe48

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0bf8093cf13d2e20e42f7e102002fe6354ba39a9dc73455249d21f3d217f663a
MD5 4c3a72aadf0763b207a25a0f5a1f22bb
BLAKE2b-256 9f7d37ab3b5fcbcd5a44e5c877c60ee483507d9a881ae0a94274f6276de1be45

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: miniexact-1.4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 133.5 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0900b67e27f7cc425813bf684dc6c88bc8e5ea1b96936cd68c1b5da9a0648328
MD5 3319bc93895448ac2d719e3760778893
BLAKE2b-256 b60f5fe207fe45726417e12823397e49951fb941abbb5db5c679b25df8a5b2e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp312-cp312-win_arm64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: miniexact-1.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 152.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d88185045918b4edaf0f66812efd8fe379cd60d357fe5d3f0cd1b5ed86dc6fe6
MD5 5874ca203698396c9835b5709eb4aa43
BLAKE2b-256 cc3121356ec7a8d5be6525c737224fc5978f976d2403cbc052fb3bab5c95ff5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: miniexact-1.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 118.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5d967146fd896ec7bb736dc90a3ebd23b5218756556598f6f1050b19871cdc61
MD5 57e14db1891f8ae5ffd6036711dda3fb
BLAKE2b-256 88bb5f57b3584dbfc9e2a66e3b1898b65d15532960ed405d12958e03b52a9717

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp312-cp312-win32.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e83e2b4e298774fab20f3a4c1a7b2fff3e4bc886ab4f42f02a7925836ac31053
MD5 194da963ba0a3df7a695ee57e2cf6183
BLAKE2b-256 abf8808d9149a8856705ecc018f3cf13b131de192c0d2b3f5c115a41348f208f

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6c649ccf617b7d4d46ed48f75ff4d50d640784663e99352ee2cf0a43fea073f
MD5 e0d851cc742cbf293103495d9bee4123
BLAKE2b-256 b288a46cdadab1866236dbee7442f3494e2474bdfdd15f5d0a48b8241bfbbef8

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d9626f0f384d75cae48080b54a43912febc9d7717af06b1d0e6da5d5eadb530b
MD5 88c9d8eebcf1a42007905b8980ee5f34
BLAKE2b-256 75ba8b4c1f918fd6b2748907a6d1b524dbd021258a611cbe956cb210388aef9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 53fc60fb8792ea57ccd0b756114ce0220a51c630284845d03755060f02cfb4f5
MD5 8e5203f49d1bdc7f902b41258ce3ae3d
BLAKE2b-256 de620da5e3f9cef0fb10d5baf6bb8e371c69b1d3ff16c8153919688666ed355b

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66494552ea9ac11b9636ecee88cc203465ede2ad460faad76ca9acad36ee13ca
MD5 fcfd9229a1094dba26a15faa2f6403bd
BLAKE2b-256 396a879804044b31fd3820721fcb7b4fdb18f802026bd5d727f89187c251d7ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cf73094c78a87c9fdb989e4876fd547560fb1f3d3ffc2408f9d778c9e0e6315b
MD5 cb86768bf114628f52a0474972449497
BLAKE2b-256 a5599c8ae4a9b8de06bba3d72611d28b3d5603196f559a2ecbbc9f51f8ca9a7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: miniexact-1.4-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 133.2 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ca17fdbae803f483d85a9540d5818debd0f42f033c5e47a3c978c8205ff2e4b0
MD5 6b43aad63aea466b71cdfc816b851f0a
BLAKE2b-256 f202c9468154f5e79c5edbaa68f9cb75aa74c3c33156061c24f9074620272328

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp311-cp311-win_arm64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: miniexact-1.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 153.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6c49da7b55458ed8fd4a32c2dffabab5718fadae3bcac26138a8820e2332d099
MD5 9e24288b5ee61b104a6eea70105b2810
BLAKE2b-256 4672dc05c57b37e20bcfb2109a1637a392c59080d4024906875f565f55aba1c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: miniexact-1.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 119.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4cb66413a165cb35f858334f6b6d0bce431de03b65bb9328386332d2ac23519a
MD5 4eaabf13ee5014b17a2dba8b6a7edf15
BLAKE2b-256 22db5d65497b19d2a359eb12b42e6d7b660bd4a7fef674e67dbf413994b354c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp311-cp311-win32.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a8bfcf6c8a7e754b104c32d8ee8072e13ecc5f19b2be1762ad699ed5b0923af
MD5 87044f3c33e5c3ef96a4e0c4ce8e2cf6
BLAKE2b-256 fc173645fce1e0ccda1d614378cd7a872cf79a968f5ac0cbe980f144d5eff0af

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 967dd200f4a56fd85ab8db0a0c546cc607f2bbde9dddbcf6fac567e2628b7508
MD5 5bd48ba8907268eb0e4fab2b75a2612a
BLAKE2b-256 668890d2a77779da81a50e7493d242f199da28e934a75262082d06e468111f74

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 abe43185b96aeb9eec5b1577bf802074db7fca8efc0a383a6ccecc9fa43c40b9
MD5 dc375b931a91d7694e34f78aa16d6f12
BLAKE2b-256 56b21c30cd130e964fb9e77e2ff0f28177f87c3c4f20c6f466e16d6c1a087ecd

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b66ad1ef4662e6e613780260f7938612362eb160865477f1bc2e8930a04d2822
MD5 1c468529f6374b991c1ecb6b953c6837
BLAKE2b-256 e2fa6f52a644ee5f258b489246e13d3ca39a48a4cfb155f8e13ffdeafb9bc86b

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3f80682eb0841f6e1bb90bb8359cad078eb638976823c9bf5a261afb61737ff
MD5 b97693c74766a9a5e9aebfbbd50e1263
BLAKE2b-256 039c0ab57c32d9c4a4d5a9a8219ff800537ae58e4a67cccd634b2692f9be9916

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 527bb0cd4749bce22a44dc4679c801f5a0b896d66dc84805962cce585bce853b
MD5 babef546d09d7bea91e78b899f5c1e90
BLAKE2b-256 5719a7d2a07543878094a821a237390e1044092a795c148454554d38b86a0fb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: miniexact-1.4-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 133.2 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 0095c48196c618841c0ef117e64b5e42484174997b816cddf793ab3f7b4b7f11
MD5 165bfad0fc081277fe6661ac6e32c262
BLAKE2b-256 38d13a5933cee13b8834466cfa36b367ac420070e772e0457cd295dfe46082fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp310-cp310-win_arm64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: miniexact-1.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 153.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f02130653237742876a4d6266378701641135f34db0662178681a803d0ed6b3b
MD5 0f3ed910f516dd3d4abddd36efecfc68
BLAKE2b-256 65bb4b1ff604714d4b8d79ffc3b40beace0e4728e5a33fc77a9f2c95e43d9f3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: miniexact-1.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 118.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6aa9dd02d02cef51e7023073c0d166d5ee0632e80b424f325eab028ba5f5dc21
MD5 8b8bca0185c1021f94d0c21bad5c3b76
BLAKE2b-256 7125ce18985a771fbb2582caabb339207d0724299fb56d455facca1e9a424aa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp310-cp310-win32.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64837d3f1cdabc4819be7b6139a1d75c87a6d0c5cb17f35e3fb90c250b7068b7
MD5 0709083c54100bb8856e7e82cfb793d9
BLAKE2b-256 2d8db912a597ea7f0b339d18501762a8f9fa7b707a203f625506139228ec5993

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 591cd0061d16f2c97d21b94a7ac3df3c8394130783dad4fe186df7034a340606
MD5 ffa0d7a642e20ea6e3e1682bdabff81a
BLAKE2b-256 b4397494ac6c40fc6cb94296b124fd0db17688b8c6780dfbb420486de46d2ffb

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 63a99084e6d512ec400d40b8767b8e7dd2b972fd3d49bfa47cd0ee76cae02e22
MD5 93b4fb715fcfe96a240c857a3514440a
BLAKE2b-256 9439c452a87fa041b938175832b5f6a9277dca68f43b1a216c1652e1650b096a

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 00114454898b01d7c60f6a7319d1e1eb035c25084dbba8ccd0d70e1fe6568eac
MD5 7cdd8eb7b61f4e726977c494c3f562f4
BLAKE2b-256 dd28cef5620e03451deca941cbe035aaafcec48db8a8f24dfef85831775c02f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82b7cdc056f6268620a7f9c641664a3e97d74774788d6de5bccc2f5487e566ba
MD5 7e9dfdb5f0a7a722db6fd145fb3cf230
BLAKE2b-256 cd30cefc48a25737592fc5d1ee71b9718db776ed5a603283441fe7a465551b62

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 188afe8d0a6aa92512c5ab6e60d8ac08c9ca3bfe7171e305abc3cafc28c6aab9
MD5 4b0871aaf7227f2625a6684a34fc07e0
BLAKE2b-256 8dd36e10222b6662fbaf96e789a2d0c14375952e0e45bb258ef6f897dfde3aaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: miniexact-1.4-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 133.2 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 d24defb5ae0d4ff5e01b939c8a97222b29c676b57e2669780a8293895b8d59f5
MD5 71c6cdf00ccc56df4097407790032b49
BLAKE2b-256 d3e7f062c42a0465e70d0b1abeb7f05af523bd516956b550ce217fef424419f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp39-cp39-win_arm64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: miniexact-1.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 153.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4a302871ed1a3ade5e5e8f37006c54c6e953402e795acd4f6ab621958a1598b7
MD5 c9a0b3dcc3b12deeb90ab61cd71b444a
BLAKE2b-256 8de5b26c065e952050172c0ec4c3fa775ab4bb7dd7f275614d63c9d0a37f4de4

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp39-cp39-win_amd64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: miniexact-1.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 118.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 64be16b3cbd26853a2241f7bc121b1562b489c971f1342222d54fc402002366e
MD5 0768dffea8abfd163fabe78427a4f802
BLAKE2b-256 aae68aa64e4b067174a58c83bedf06bf31544ec56c295b227b16f252eab881c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp39-cp39-win32.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2390f5bd6b2cc2f537a93e845f81ce9742f4e6fe1064e72a84ede1a8c6e43e6a
MD5 aea439fa5ac4a3dd950d981da78ca104
BLAKE2b-256 e303a7b3d1f5ed39b65149d0c9ce5d1ee20c312e944460eca68c1c80306188c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 977c39997dfd98147305b0d637e6cb687c3b8bc4f27911c5c881d871f13fcc14
MD5 e5eb7b277f286afe662a000d9cd2a85f
BLAKE2b-256 0db3d5adf71539323ab6a9933dd3d765e7cdb25b00c99d8cc19c136e50d59e53

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a3355e53ff9ddf526480cfbdc2d77d79a2139fb28c2417889097951ff394753
MD5 2f6c78df24bfd1324d5aa22b90b3d304
BLAKE2b-256 944e4f0575a4c8ad066abcd05aa9340b0afb1d75e6d853fe171516c78557cda2

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 51331202f9917a2b4b8fbb1e49f4e63e70f262bc38a44f23279c6e4af4ebfc67
MD5 86ab85faa9d6e7904e58523315461de1
BLAKE2b-256 1bdf78c3700cbcf7edc5e0aef9ddd521da94c4cfe8eb4f796204af66775932c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6672ab70fb6931e2bfb85cae3ebf84f0643ccc150a60a3612b349e5e500cb26f
MD5 1605932a60aafbfed4ab93d4a68b21ce
BLAKE2b-256 93656337f2467606c1a2b636cc59e2db6ede87d1cafe0fa583ce182444fedff0

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6057a9c89b848d07a14fcd7a5b60e769b6fcda409dd195c88e79dac995cb911c
MD5 f83e2fe795dc86187004b4a4af3353f1
BLAKE2b-256 854f5ec6a6636d5d3822e0e9fde598c69096b16dbb5937f41a616478dc3216bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: miniexact-1.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 151.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 851bd9779dac44a46a829e01600f5d524d4b7df213a6051cc78bfb0471ffaa89
MD5 ec2e3a0ca84a64c858d3272c0bb1be55
BLAKE2b-256 6b67c6685c591c1a3a162d7c7984e812155aa691bdf100827a56fc60fa9539e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp38-cp38-win_amd64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: miniexact-1.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 118.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for miniexact-1.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ae36b0960901db057b1849056a4cb0fc25bd926369a7e9fdd26e7982feaf1284
MD5 ea8e41d2c294822e9e7ab9df88dfc109
BLAKE2b-256 dbf510612508da93e17e4e65014661b65835143f90a8796c74b27ac861a46bba

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp38-cp38-win32.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f68a586b0f7b01cfb377e1f779bdb84a64233927f0a68ac6eb68a59fe1c3da3
MD5 77b396bdc79cb8b228cd1d31f7029b86
BLAKE2b-256 12543fae51593751cb0d42bb43877c1c882d0d1bc953687963bfbccfae8c7cbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b0afa24edcfe0829bfce1537cb3c48d72903d26ec750d8d22c6a411ce8589d1
MD5 48507c526e493704ca604b7eb142af7f
BLAKE2b-256 370c41d9d35b33cb4051d3f07f33c5efa870e970cf66e2d1989d789cba065a22

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8081354faa1740e86cbda26d8bc2b29781607390c46d850d295033002eab942c
MD5 ff01f41e8fc8fd3cb4e12307087e0b3a
BLAKE2b-256 3b0242bb57a8cf678ed833432e49bd0f81d60d0833535c25ad88497a87cd95e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c3227ae48754e597d875d4c46db5e9c3505531db8dca518679993016d2156531
MD5 d0e644b0154913161f023d83ee0fae07
BLAKE2b-256 06cac7d1161622d5e06484b081640cf76e1cc9fef569a169054fe0db9b7e007b

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f9c5c4173a9a84ae7e78c9e28f8ef97ba0769cf165a7d001f7361e0e0946193
MD5 808035550af4d28ef5bdf216c8e78d45
BLAKE2b-256 a6ef50a4868168e6a1cf5e8a673567ee069c60642e72724598c194b1dd484c3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9104932322f17117156bf3fe730eabfac380887a54e22a74480a9a097e504573
MD5 1d8faa23d2bac123c51fdc83a85220ae
BLAKE2b-256 da81f615f9fc5e0f0c1158afc08b52823601fe79e3fb97e39ace8fe615da11a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.4-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

Supported by

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