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.5.1.tar.gz (346.4 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.5.1-cp314-cp314t-win_arm64.whl (135.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

miniexact-1.5.1-cp314-cp314t-win_amd64.whl (160.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

miniexact-1.5.1-cp314-cp314t-win32.whl (127.2 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

miniexact-1.5.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (156.9 kB view details)

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

miniexact-1.5.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (148.9 kB view details)

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

miniexact-1.5.1-cp314-cp314t-macosx_11_0_arm64.whl (129.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

miniexact-1.5.1-cp314-cp314t-macosx_10_13_x86_64.whl (149.7 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

miniexact-1.5.1-cp314-cp314-win_arm64.whl (131.4 kB view details)

Uploaded CPython 3.14Windows ARM64

miniexact-1.5.1-cp314-cp314-win_amd64.whl (152.4 kB view details)

Uploaded CPython 3.14Windows x86-64

miniexact-1.5.1-cp314-cp314-win32.whl (123.5 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

miniexact-1.5.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (159.8 kB view details)

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

miniexact-1.5.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.6 kB view details)

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

miniexact-1.5.1-cp314-cp314-macosx_11_0_arm64.whl (128.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

miniexact-1.5.1-cp314-cp314-macosx_10_13_x86_64.whl (146.7 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

miniexact-1.5.1-cp313-cp313-win_arm64.whl (128.3 kB view details)

Uploaded CPython 3.13Windows ARM64

miniexact-1.5.1-cp313-cp313-win_amd64.whl (148.4 kB view details)

Uploaded CPython 3.13Windows x86-64

miniexact-1.5.1-cp313-cp313-win32.whl (121.1 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

miniexact-1.5.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (159.7 kB view details)

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

miniexact-1.5.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.5 kB view details)

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

miniexact-1.5.1-cp313-cp313-macosx_11_0_arm64.whl (128.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

miniexact-1.5.1-cp313-cp313-macosx_10_13_x86_64.whl (146.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

miniexact-1.5.1-cp312-cp312-win_arm64.whl (128.7 kB view details)

Uploaded CPython 3.12Windows ARM64

miniexact-1.5.1-cp312-cp312-win_amd64.whl (148.5 kB view details)

Uploaded CPython 3.12Windows x86-64

miniexact-1.5.1-cp312-cp312-win32.whl (121.3 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

miniexact-1.5.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (160.0 kB view details)

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

miniexact-1.5.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.5 kB view details)

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

miniexact-1.5.1-cp312-cp312-macosx_11_0_arm64.whl (128.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

miniexact-1.5.1-cp312-cp312-macosx_10_13_x86_64.whl (146.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

miniexact-1.5.1-cp311-cp311-win_arm64.whl (128.6 kB view details)

Uploaded CPython 3.11Windows ARM64

miniexact-1.5.1-cp311-cp311-win_amd64.whl (149.1 kB view details)

Uploaded CPython 3.11Windows x86-64

miniexact-1.5.1-cp311-cp311-win32.whl (121.4 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

miniexact-1.5.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (159.9 kB view details)

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

miniexact-1.5.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.4 kB view details)

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

miniexact-1.5.1-cp311-cp311-macosx_11_0_arm64.whl (128.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

miniexact-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl (145.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

miniexact-1.5.1-cp310-cp310-win_arm64.whl (128.7 kB view details)

Uploaded CPython 3.10Windows ARM64

miniexact-1.5.1-cp310-cp310-win_amd64.whl (149.1 kB view details)

Uploaded CPython 3.10Windows x86-64

miniexact-1.5.1-cp310-cp310-win32.whl (121.3 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

miniexact-1.5.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (159.9 kB view details)

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

miniexact-1.5.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.4 kB view details)

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

miniexact-1.5.1-cp310-cp310-macosx_11_0_arm64.whl (128.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

miniexact-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl (145.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

miniexact-1.5.1-cp39-cp39-win_arm64.whl (128.8 kB view details)

Uploaded CPython 3.9Windows ARM64

miniexact-1.5.1-cp39-cp39-win_amd64.whl (149.2 kB view details)

Uploaded CPython 3.9Windows x86-64

miniexact-1.5.1-cp39-cp39-win32.whl (121.4 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

miniexact-1.5.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (159.9 kB view details)

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

miniexact-1.5.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.4 kB view details)

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

miniexact-1.5.1-cp39-cp39-macosx_11_0_arm64.whl (128.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

miniexact-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl (145.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

miniexact-1.5.1-cp38-cp38-win_amd64.whl (149.2 kB view details)

Uploaded CPython 3.8Windows x86-64

miniexact-1.5.1-cp38-cp38-win32.whl (121.2 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

miniexact-1.5.1-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (160.3 kB view details)

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

miniexact-1.5.1-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.7 kB view details)

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

miniexact-1.5.1-cp38-cp38-macosx_11_0_arm64.whl (128.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

miniexact-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl (145.8 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for miniexact-1.5.1.tar.gz
Algorithm Hash digest
SHA256 da376eac6814824557cb3ce059f458a98af91e393da29a9ca9abfc1b40614f76
MD5 f49140c48f66b3535d28314180f2e759
BLAKE2b-256 2de93ef4f12e792bd0cb59e2ffb4e128d50dde91978bc968b4bf76b979ab654a

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1.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.5.1-cp314-cp314t-win_arm64.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 14eba6a94ac708a4b28f216aeb4a0a810b7d6715b1d93635116efee09589c89e
MD5 d150860dc01465c1b169dde1b6662374
BLAKE2b-256 2c812b30499a81a8bc7b589488dbd2d79a926d2c58887a3cbda1a87c58bc6cd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9b78c2ac0c54b45eeb9ee3d14c5dbb5d317aee0dab1cb0a9be1ff52248386337
MD5 2b999de011a6045ab18cb14c50d3435c
BLAKE2b-256 cdb3bbf52ebbeb6c2b82cf835bb2f198087cce08766b5ca2d633064c1ad97208

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp314-cp314t-win32.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 130e08f65960d063d4b8f20252f88ac0da52b0fd660c1bdf121949422eb1583d
MD5 e4a36c6414ec35b7b8141a1b3704304a
BLAKE2b-256 3d67efa56873b127704a8fc1350519acc1313629efad53cabcff6e352e53494c

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75cd69dee712b5f09706399a590fa85e1ec3d99fcc102f1cb86786b3e360dbce
MD5 c2e59101cf7799e5ad7b0a6c551cf24d
BLAKE2b-256 b8a681a9a37a310061ec2016c3ea03f18c1cd99e6f28b27fe63c35a829921404

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d68a958cf2928bef06315c4947dafd2f6fa8e2c704fd699d4052752545f2a6b
MD5 ec87b32ed62a0f81069ee6763c531ea3
BLAKE2b-256 8c466f9f614736694688e47b9514c5191d03e549887db093947cd70ff9096961

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0fb58f9ba57f48686015624d09dd053d1129e094a368f7c47da6b7a14ce9b9a1
MD5 de02839a3cc06904ff967238be5fafb4
BLAKE2b-256 0b81c9b4a3defcd78a0f5b43e40b7395316fdc667ad019931410090caf7b8a80

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d017fbfba6cf6fdcfa7a72faab412a6eb503662201510be79900db9aa33e55cf
MD5 18f5714e16aad91ccea39411f54ffa8f
BLAKE2b-256 6b19403a5376f4b9b65b772a43c309050c10b6819dce19d975fa2b5f6ad60126

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a58a1c7c27fbe4de829a9e8f1f03ab232b660e98dc6b8fd6735d16b37fb7e3ea
MD5 a67414b790dd4ea030a0f376fb113cfe
BLAKE2b-256 88acf8a049a4a5018ba81948347fb839a87fa038a6f067caf4f6c050745c8a0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7443f65020a01cb582c94e0ff63ef1d2a64417f4c69962c402438d4f4305b8da
MD5 55ba42db505ad4f2327114461e889b5f
BLAKE2b-256 e3dd48ab2e38aeb768678c446186b5eaececcab0b4cccb1865cc6f1d24b98b9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 edf97dd8eac7c00156578995794a628be3f263aab4d5effc04704f3c4e1054ff
MD5 ec7bc4c6bd716744758824d26e4dda08
BLAKE2b-256 748b60413230cf6d4fda24aaa8f8a1e3ced4cf3a7cb16f9fd62da51db24eae01

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 70c23a08ec95543247e9659a0bdb068c4a6f45aa38d5c9bfbf179e7bb6568bb8
MD5 c8612d83302d6a0462aa26d4109ec6d4
BLAKE2b-256 b37d3e457a34346d652e17755c7275e100df7b6abe91ec2c6792cfa5b4aab64e

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 aec2292ed2a5a92aef6d65e6660ba96c2e81034dc284048991b801b085032aea
MD5 520fc2055274cde5e1645c59a900e600
BLAKE2b-256 146215b1cdf44447805d10f6362a6bcc6fa88aac32eb4e14ad02926db68bf373

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94affd001adb21bcb64d4e1080bb78b9adaa750f87085beaab2f7bd7e234e0e1
MD5 ebe4b57dc1a3997080f3f75c9a62ceb7
BLAKE2b-256 18f36b229d2b5fcc9ad06c35f9751e477b9c98eb6329a1c0262b42558b46b807

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ed2be2e9da05671eeba5fda9221ff1fae8f42d1e6e6b5b8333ded3e0303ba28
MD5 7b4a60e2800bbb1b073012ce2b4d84f9
BLAKE2b-256 33b6210989ef457b047375c67e43adbfea4e0856bfb231eaea73c9f1551396dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 757aabdcd0ea2b63d698a258c84e8849b7ea749090fc05421c392077e1a1aa27
MD5 937e073f8d3ff755c0ee0785fb998210
BLAKE2b-256 29f581fb48de0c451e9f8fee98a21a56d60545294891a2ad1ca0b6e610904ec9

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 226a5b31c05b2716370cbc4e16a972d5e1777caa3e807885233efc6164d53df4
MD5 d44fb3bb211916484ae910c02dfa7da0
BLAKE2b-256 662cad9d28e3fe46a2705306a735513db7295fe3575137ae6faebc0ec527c36d

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2bf7eb400c5696493840296ab37808cb0f401bf8f729722902a4fd18ca25a36
MD5 2ba0a9213ea56dc2ab446ccee6a4035b
BLAKE2b-256 707ecd969ce9a8bfb30220f697809f141ecad4ff3f78a15d89abba0add519bd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cc0132641237ac256617bfc93e52fc7c5fb84c7dfa73085fbde2bc45dd7925cd
MD5 704f11ed5c3d946e5d62bcecfa035742
BLAKE2b-256 22ca32a9e67690cdf8cac284ec51c060a1a6ac1e9a86999b67891c08d994593a

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3641b8d5f130317a79bf27b549c1ac2fe5205ccaac371d41643394eae8deb421
MD5 ee824eb4fef8dc5c2b84d627a39f51ae
BLAKE2b-256 686246a0f8a882a67b17a92152e78ede191cd3a4313f2c0f3cfc3debe6343644

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6da515f3714ba3a784534ca87a8d134b8ff543a33efdb5ea8fd826e455f8df64
MD5 139d936af2b226da91d8dc7208c3e746
BLAKE2b-256 a28a72a85fd5f9faf5eb04ead3cfa4042eb8f27cffbade8bfcc9dab3ec3811c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f6d804fc0880c8c323d4261c4c17cdeef3acd5e9825c38a3705df7b9d1ae534f
MD5 c3d9b68fe8354c054480951ff00da3a9
BLAKE2b-256 f6c8362e8d8e11afbfbb6a65db3354da4eb0299fe48cac2cb3683db4f88a4e89

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbfef282257a6e223dec8f5080380d9dc1e9840fa2099dde3af2a9255efcb8bb
MD5 c786e7977ef7549665a5c635632e5262
BLAKE2b-256 93976979f30f0a034d8343518dd779e7dcf694e053d46f0b71d83140737af4ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15e262def513125a0ec3332d233a4c3ffdc65844eeb7265806d0a48dfc854871
MD5 041236c6edb1ef441b981bc0d226e726
BLAKE2b-256 4ecbddd1fa04c1e007a43bdd168925c09269efdd392c7fc5186923c1eb9607ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b654d8c8e54ee3fdb2b344dfa219f92c455e7c3d00322b3eb45f0c453665d1e3
MD5 dfe0372c2a82c786629d44493985988c
BLAKE2b-256 60ff0ffcdfb4f0da19277d81b0498424c1a35aa996c9484cdfbd5479a1648fb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a2f2268b4a0a4d03ccf2f6f0e37c3ce4b89a7acae24cc13ff3a17c780675db9
MD5 bb6794682c2cbec2c5bc42e1929f84fe
BLAKE2b-256 a8fbbca406a4536fb47768ba41f24203d8c18a9e13a3a67682b8849498d044cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d115c73c3e298cc629019e397d3b943e37c37432c4c99a5ada19d2dd05e76fc
MD5 4d8d4d2abe035e9f0217d986b0a0369f
BLAKE2b-256 0e8fa061a2fb8e95c5680ad2dc43657fd53774cb30945d53031364eabc870b00

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 af93f3abf95a4c23318aa2096087cfb7c1dba50aacebbf264ad5fda6cf390834
MD5 d1ac8b4f2f6a80d338053ceff238a618
BLAKE2b-256 7f20a0c8eba4c8da5a86307195bad522a9f7c4ad4fa8f251fe1a69f36adc3102

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 915bc8159e67e5d9972ef04b69510440d4da88da7da4844d69261107f75dc9a4
MD5 0e524385d938291ce303e6217020b87a
BLAKE2b-256 8da0d0d46e8bf1d449cffe76d9367aacddcf25a9f4ddca96b1d9c6fda53b6393

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1b0706040d7e5366c0237a2fc2aa039ccc881c4e7ab6bb7ff6090967afd3c845
MD5 92d6e25c128c1bfdc7f784f5a061da21
BLAKE2b-256 f9ea84441304e2722f9bbc1b5c26337a8122c58c7b70b87bae7568c9db07c32b

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7d1485e8587916e7928c8d4b9c6a2a01c9c6776b4f37880f5a97c4cdcc11f15d
MD5 8613355189cd215ea033ef7a398bc7c3
BLAKE2b-256 b8dcf6827a7b98aa05c6761f78b43abedc73799788cefb39d5fc25e64f335b5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2aa7188445ef614d122d8b5c8ee5e11818b2cd9888aa266459e17f6eb6ce7f4
MD5 39eb9493bee16aed03ebccb31a3502af
BLAKE2b-256 4e2a5725b649e25475c1b3e72f694d42fc9ad667277440515d57bd0e74b68fd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bbc8d8a7d80a4a1bd7f2a84f0cf1f1e91d3eeef2c60a6fb3d9f1d32b2e5daea6
MD5 92c68af46e8f5d76e5d90064b65ac340
BLAKE2b-256 5e97eeed87863717d8fc3680f34636e94aa5ada4c48480b5f1a6fa64ff53dd16

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 55a7e24de0287b3fce42bfb20e2b9fefe1c9bb35eed0e6961afc081a4acfc2f2
MD5 11ebd37829bff1e53523d1e8b85d16cc
BLAKE2b-256 21405b8278cc3a208c2745158ab5eeb5bd2c6b39149fe55efec06a5811437c37

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b1b95d1e0bf9ed472525911843223df47fb619f0c113112690ea6c00393cfb0
MD5 92ee9b8d1f3c393660f29ae0829813e4
BLAKE2b-256 2edbff19ad187dc1dbe2307cf9bcc89b97832ed0a99ba5411ac20dc220f997f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05eb51f24c4ad1b954aa50b71ec1d140eedcbd1ca0e44941fb43f4f5e5803504
MD5 aba2533620a03f8b659d2b54b9328f1f
BLAKE2b-256 a09149be5f0c93a648b2d83c7a4973a2ff251bd0bb33a1389a8fac79cd0c1ca9

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d50924aff3e30df59acd3d40bd14a63867b6f4440dc798d7627875074036a348
MD5 3271ed27ec6c63efa3da7810960c1f66
BLAKE2b-256 1041e8b3183c483e56cc25a4f379604cfb97947434402bbe09a6cd2bb50e2743

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp311-cp311-win_arm64.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 bfb2ed382a2f86120da8fcdb7d8ca8865d32d537b94cd5b62c34eff819efdc00
MD5 f78c48dda9d8d789ffcf18ae43a72b6f
BLAKE2b-256 b48b1b0afb93f6d9039c3e64d311b04caa7028a477d0626c63fe1f1d8a854f62

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2af3dc65156bd2889ce645b7ff410b3fb15dacdafde1c43c172e07e7fb976457
MD5 3198f5b2d558eb2e2e8b3cdc724b0e12
BLAKE2b-256 4d68bc126093733f0b87c6ab7183bb341eacaafcdeebaf53d508615212841ba0

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8bcaf2da8809bbdbb2441dfe82e327164202234074cc56c48f0a63d6f80a005c
MD5 83d2a93740b8469f2e020ee46263ada1
BLAKE2b-256 8f337690c1aaa0bda02b8e8ebc576f5acfcd259284d4c7ffa117d98e7555cf46

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1f1959638e8e34178bcfd7bf5522ef8b374a9c315617484b75c0e15c7cb298b
MD5 ad1315b85d9be0f9104d2234166e6744
BLAKE2b-256 93ccc8818e002767fc9f1f259309f2bdb65e89eb43c429dd7a9ca30f564a4808

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b5a068a7f849e3024a6295b0eacb567eb1f292e50c071cb66f2ebc3e051ef48d
MD5 457cb3b12074613a1b7891c0f617b45c
BLAKE2b-256 1b28be9ac7cf318f43e411d1e77a4504035dcafeb575fc77f220dfaec6c6abff

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 224654a21483a4b15befb78d5402a73f7171c3966b2e85fb1738398113f15155
MD5 160871075f918803a22dd8fc9c65b56f
BLAKE2b-256 06841add2268d899f8f9e1d0b87e0abc7f851bdc57a0d1587280eeaecb143ba0

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b767466aaffa27a44aa0424276272213031e28539972f72e5c53399b05187077
MD5 a090b64a74d55221a89e74b786afa0d4
BLAKE2b-256 ed3dcbe908fc2eb2fb1023f7b190d638813a919bd1376e00cb6a125a57d6fe57

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1adf11bc0ae00cf309c2f3a16a283a502ece09cbef1cf8116e49d19494d24a19
MD5 78600665ad07a379f7cca835a10f79fd
BLAKE2b-256 528137ab44de047a48b94f6ed7110d315e158f1c043b3c772a86b773d636fb09

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9fc024c85a04d8f2872a74376c41ef5151222955d963f2cc26c7aae7ca640b40
MD5 ca06f3f2087f066d8752dfe3c57b8c13
BLAKE2b-256 e66887a030b9f390a1181c38006f93dca90d7995b0c8db55aaaa8eb4adae8132

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp310-cp310-win_arm64.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 d9001e42e238ed93a46e4eca481fcd3abcfaf5609b7f51085a0c534f29e58929
MD5 7267ab4c1e818a7a3562fd94f02044f8
BLAKE2b-256 d30d748657191d1ad679a80550b3dc988332c98fd6f7cd80b17c378a57d2d81d

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b84deef02626a26fcc9ba93ed3ee5a8ab4f57de71d9897a292f8b8585f7bff71
MD5 28e7a452267ca5e7d39861dddc3f0ed8
BLAKE2b-256 45ec2bd58c37ffcc97e972d6b646fbdd7f99550887b1729838e1e709f2fa0e76

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 46d68b542dfb29163fe10d0f9e55fdb22b508d9298baa376168a36742ae0d74c
MD5 062caefdeeae58450733663e0181e62d
BLAKE2b-256 481e89d7cd3db1d84560c0dfe81f0d85988c8cd27b74811a311f789c973261a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14d570feb9567099179a08b3de5f9c25688fc60bfe88d825589669457080fd49
MD5 caa96f2b5b2f9cf05a22ae81ccfbad0f
BLAKE2b-256 e04d1dcead0bf778370072a42eed41f7a38424fa481f9e47f951956b837972b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cfc7637154dba541d57fa1379d1d31c8a57afe547f29d9daf46eee0b219af23d
MD5 c71bd2230e87483de01fb89291f62ec4
BLAKE2b-256 7152f66bee4c1f8287581fd91e500ccdbf13e50dde38759f291bc0680413af56

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b0bfe99dd241ebad5a78a4e9e6698f175d6f8cd81532b22fda8b29bd805be9f9
MD5 d8ab35017b46383c7f18ef927929bd95
BLAKE2b-256 005bb903dd4ea67bcf2aa5078903226b00ea1c0bb43078c950fac5b9c1e02060

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ead467c2f1e948f378fad8fb8fae576686a7c23347fc386a82016d0d1a19014
MD5 362684e2587a65c6ec0941a3e73c7975
BLAKE2b-256 733c438b94bd987d2ae4ae51853fdbad80c443242ba7a7550f53adb8291004f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2ef7083711359b9934a6a65a53fde63293d9074f708f48848272b60440cd677
MD5 a6115bea4d7f065e2c6960e2a93208c1
BLAKE2b-256 bbbe17d51a557d7d47d2e70081e03bb0a576d8abebf47a14b200957d442faa8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 da3b80a66bf9251ab555f94b85b29b6abcfce23e290991281ef1e0a95af17100
MD5 f08551ee9f3a8a158430b3c5f1ec86bf
BLAKE2b-256 b9aab9409699ef1da135817b68f1df59c5e80d67316bd14cb4a4f6bc19a959aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp39-cp39-win_arm64.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 73c7845666980bddec9c84f8f100b0be8d01dbea4c0570f5112c1475690a5258
MD5 19124718f629f7eeb48759d517606664
BLAKE2b-256 1bf2438810494e57246b16a527b7cc04e6a657efa92c0c9265a7d378c9f2bb0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ffd697daeca3274940ea9055ab3c8ad6d13e9f51eb099ffa8fe1f3840b8c7d4e
MD5 8422a279eef9036a4437466442101153
BLAKE2b-256 6571dc26fe60681f19c1958ce33d4528e2e0fb626dc2f7d07f632df8e198e652

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6175275fd20de1d5f32be010b5e50ecae6f16b9ac1213757aa9f94b1d276a8bb
MD5 5d2ae2ae7217c4b06840ff35b817ed47
BLAKE2b-256 f50b216f700628b934e38215b67e007a7c152732e2721f1308fb3f26316a6287

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd3850cdfb3facb23b8839b4592d6b5d1fcc38a009448ae07100f96e06fba17a
MD5 8581f55c6adae5f4d7822529a6f92c8e
BLAKE2b-256 b89b4cb3639f9d3cff4043caabe7506bb80e899ff452302013c7770b679191d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7ef2650c0cd6e4d068ddc698310f403b038e6e318d64bd4e977e320f3ffae76
MD5 76a3308e657c1bc8cec7f8989c7d9ede
BLAKE2b-256 2345dfa62d65bd4be4f53f3bb968926895d1d32eed0ecc261696faa9baa3dd92

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 992b5bc5de3dc655caf0204879ae25a85d57204e607932897a16e5797eb402fd
MD5 4bd1a8f5cf58ea3b8df201053d54453b
BLAKE2b-256 e1b44eff2871cbbecb08f1f3b20d403287059e5a4a5e331c2adeb73f41066bd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ad6fd7b86c1363f638e72d5e0f2440fb8f7173fdcc655784365e3f3ed48d1c9
MD5 07d5b5ed5f2a17338f78a9b2100e62ea
BLAKE2b-256 68b5837f97bbaf5ca47abdaac9ede5b070f04fb5fffbe70713b76241d01a81ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc4666ffcee8fa3798cd8a8bff123466d49404abea0a543a6cd9195909609d4c
MD5 bfa7017186b823890623c6c51400e42a
BLAKE2b-256 1715326f3f5f39fa3569a140a8ed10b82fa0d43bfb9ca024bcd8b529fe404655

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1d1899565062cad02fe384bf115dcfbd55a4fe5b2c77024412b2ce820f282646
MD5 37d39fb48633cd24569563965af4eff2
BLAKE2b-256 3c87dac11121901bed65b2a136f4d45250595cf7f5f35a58ecb45611f2054e79

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp38-cp38-win_amd64.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2f614cb32575adcb0cbf89234f048bbcebdfed757e3447bc8706528cc11baf9a
MD5 13164f48d223bfea8c384a66e6fd0686
BLAKE2b-256 88834552fa81c1f49f3746681071f0e3c1f996914a768a787b38fd9dae0aaa7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp38-cp38-win32.whl.

File metadata

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

File hashes

Hashes for miniexact-1.5.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 dfa68c462bd94021e865e45aafdaca916a0bef40244d514fa756b968c8f2b10e
MD5 957721afd8bc12034a2b7adf272a1522
BLAKE2b-256 588db9bf1d8d73ffb11ccd79165bcb38b0f34c504cf66f1b39c3f26c7c5e962a

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41bb43b840e0b67f302957b266d0285dfc1371472e4f9048e2bbb67dc3a0d60b
MD5 067f97d5b9f29b3124cb68ba7a5e6e98
BLAKE2b-256 1b8035c63ed52f7872031e29de44094fc80c87832e8938f5465d8b2c6cda9bb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6bf1ce16574947895414defedce770f353a83aa3c8104a38d2d553a7d26dd670
MD5 ffa8065f7f734dd478978b687a533c36
BLAKE2b-256 ac8bd9946166873f36edab073e8820e7c99efd9e10a90b143d04c0546c321eb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b37faf1f046e1f345d8428c1136fefca65e2eb8fef6da5bbff455bcbe1fc212
MD5 c8a376781fa0e0ba4cc41467f47659fc
BLAKE2b-256 94dce2b7447b4be0bbad7173fcc2d4dc154c2ed38ccb3ec0cce7fab0013195f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1fed73c3f82ec9d480289ef49758b6bc6fc1bded07a8f3f322765d21685dfcc2
MD5 98ef37d784d74a0acfb9f9262d81f937
BLAKE2b-256 2fd2f43744d40beab41524d00eddb1702c52396eab707cdda841862a9cc73e1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fe647ef3a97bce93ab6935f4509994a2b7e073bb42fd3d9f0eda17590a1c288
MD5 5dbb2ee653fa8355ff08a36f164ec804
BLAKE2b-256 5aaf0e3f6571fb7fff7133723c60cdad59c86cb9312039ec5e01fcc6a39ee7ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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.5.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0ce237d205c82eb2a3d871e452ed765a05d0128ffef5b53b0fdc6159b497be2d
MD5 67eee582e3a1f17af25595f72c2fcf78
BLAKE2b-256 af6f967fa67f54147e765a4bef6aa9cfc6f7c5fbdf89f6b0daf5cbc1e86bda1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.5.1-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