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.3.tar.gz (344.5 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.3-cp314-cp314t-win_arm64.whl (140.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

miniexact-1.4.3-cp314-cp314t-win_amd64.whl (165.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

miniexact-1.4.3-cp314-cp314t-win32.whl (125.3 kB view details)

Uploaded CPython 3.14tWindows x86

miniexact-1.4.3-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.3-cp314-cp314t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

miniexact-1.4.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (154.3 kB view details)

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

miniexact-1.4.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (145.8 kB view details)

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

miniexact-1.4.3-cp314-cp314t-macosx_11_0_arm64.whl (126.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

miniexact-1.4.3-cp314-cp314t-macosx_10_13_x86_64.whl (143.9 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

miniexact-1.4.3-cp314-cp314-win_arm64.whl (136.7 kB view details)

Uploaded CPython 3.14Windows ARM64

miniexact-1.4.3-cp314-cp314-win_amd64.whl (155.6 kB view details)

Uploaded CPython 3.14Windows x86-64

miniexact-1.4.3-cp314-cp314-win32.whl (121.9 kB view details)

Uploaded CPython 3.14Windows x86

miniexact-1.4.3-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.3-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

miniexact-1.4.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (157.9 kB view details)

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

miniexact-1.4.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (146.4 kB view details)

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

miniexact-1.4.3-cp314-cp314-macosx_11_0_arm64.whl (124.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

miniexact-1.4.3-cp314-cp314-macosx_10_13_x86_64.whl (141.6 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

miniexact-1.4.3-cp313-cp313-win_arm64.whl (133.7 kB view details)

Uploaded CPython 3.13Windows ARM64

miniexact-1.4.3-cp313-cp313-win_amd64.whl (152.9 kB view details)

Uploaded CPython 3.13Windows x86-64

miniexact-1.4.3-cp313-cp313-win32.whl (119.5 kB view details)

Uploaded CPython 3.13Windows x86

miniexact-1.4.3-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.3-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

miniexact-1.4.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (157.7 kB view details)

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

miniexact-1.4.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (146.3 kB view details)

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

miniexact-1.4.3-cp313-cp313-macosx_11_0_arm64.whl (124.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

miniexact-1.4.3-cp313-cp313-macosx_10_13_x86_64.whl (141.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

miniexact-1.4.3-cp312-cp312-win_arm64.whl (133.9 kB view details)

Uploaded CPython 3.12Windows ARM64

miniexact-1.4.3-cp312-cp312-win_amd64.whl (152.7 kB view details)

Uploaded CPython 3.12Windows x86-64

miniexact-1.4.3-cp312-cp312-win32.whl (119.4 kB view details)

Uploaded CPython 3.12Windows x86

miniexact-1.4.3-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.3-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

miniexact-1.4.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (157.7 kB view details)

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

miniexact-1.4.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (146.3 kB view details)

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

miniexact-1.4.3-cp312-cp312-macosx_11_0_arm64.whl (124.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

miniexact-1.4.3-cp312-cp312-macosx_10_13_x86_64.whl (141.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

miniexact-1.4.3-cp311-cp311-win_arm64.whl (133.6 kB view details)

Uploaded CPython 3.11Windows ARM64

miniexact-1.4.3-cp311-cp311-win_amd64.whl (153.9 kB view details)

Uploaded CPython 3.11Windows x86-64

miniexact-1.4.3-cp311-cp311-win32.whl (119.5 kB view details)

Uploaded CPython 3.11Windows x86

miniexact-1.4.3-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.3-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

miniexact-1.4.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (157.7 kB view details)

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

miniexact-1.4.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (146.3 kB view details)

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

miniexact-1.4.3-cp311-cp311-macosx_11_0_arm64.whl (124.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

miniexact-1.4.3-cp311-cp311-macosx_10_9_x86_64.whl (140.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

miniexact-1.4.3-cp310-cp310-win_arm64.whl (133.6 kB view details)

Uploaded CPython 3.10Windows ARM64

miniexact-1.4.3-cp310-cp310-win_amd64.whl (154.0 kB view details)

Uploaded CPython 3.10Windows x86-64

miniexact-1.4.3-cp310-cp310-win32.whl (119.5 kB view details)

Uploaded CPython 3.10Windows x86

miniexact-1.4.3-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.3-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

miniexact-1.4.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (157.7 kB view details)

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

miniexact-1.4.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (146.3 kB view details)

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

miniexact-1.4.3-cp310-cp310-macosx_11_0_arm64.whl (124.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

miniexact-1.4.3-cp310-cp310-macosx_10_9_x86_64.whl (140.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

miniexact-1.4.3-cp39-cp39-win_arm64.whl (133.7 kB view details)

Uploaded CPython 3.9Windows ARM64

miniexact-1.4.3-cp39-cp39-win_amd64.whl (154.2 kB view details)

Uploaded CPython 3.9Windows x86-64

miniexact-1.4.3-cp39-cp39-win32.whl (119.4 kB view details)

Uploaded CPython 3.9Windows x86

miniexact-1.4.3-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.3-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

miniexact-1.4.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (157.8 kB view details)

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

miniexact-1.4.3-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (146.3 kB view details)

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

miniexact-1.4.3-cp39-cp39-macosx_11_0_arm64.whl (124.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

miniexact-1.4.3-cp39-cp39-macosx_10_9_x86_64.whl (140.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

miniexact-1.4.3-cp38-cp38-win_amd64.whl (151.9 kB view details)

Uploaded CPython 3.8Windows x86-64

miniexact-1.4.3-cp38-cp38-win32.whl (119.3 kB view details)

Uploaded CPython 3.8Windows x86

miniexact-1.4.3-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.3-cp38-cp38-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

miniexact-1.4.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (158.0 kB view details)

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

miniexact-1.4.3-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (146.6 kB view details)

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

miniexact-1.4.3-cp38-cp38-macosx_11_0_arm64.whl (124.1 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

miniexact-1.4.3-cp38-cp38-macosx_10_9_x86_64.whl (140.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: miniexact-1.4.3.tar.gz
  • Upload date:
  • Size: 344.5 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.3.tar.gz
Algorithm Hash digest
SHA256 616ce3a1c88ef5a00c7397890aa369528f6cc3ffcc45492e6c4f5d33be9ffcf4
MD5 692f56707c7fc8b31879d1bb4739318f
BLAKE2b-256 bb4878d70aad10d6e133de3508c6b4aa7f89391e7ee2ce42ba48392951394988

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 140.3 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.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 cfcf9dd710f260f6ac45009703f566cc37aaf1cd138deb75413ccb8175faba49
MD5 610481fbec685e738e340b14f1097650
BLAKE2b-256 28f2df75fe1067d05c3a59f15b2580bee8be38172ed6e8fd6aea926e32abc283

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 165.6 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.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7ed3e7c7293f5abc17ffc3106c3db4baa6a86a2fe4fd021c1a89ec76072f552f
MD5 d79b7988f2d0096ca8261f6d341bfc9f
BLAKE2b-256 9d5ef01ad48f327fa83caaa9b01f6a7f13a69d398589223580f38b99521b9388

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 125.3 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.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 eeee0814500be6877628368192f910ff69cd613aeb1af0af7d6f06ae4f8ae86e
MD5 b46fce0f0f6811dd7699e09bfcc8bcad
BLAKE2b-256 316931906097b74bc87a25c68a2bb56ec671b35eb708d6c1e3143a92b47e6fe9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9aef36c990548929ee01cc99cc5ee5c27724df9bd85f9a0de29059919653261
MD5 7eaf7e3e6c5171b00a522f4dd652ba17
BLAKE2b-256 08ab217806076f48974e0c921e095587d85cc0e965586a1c2d4d6a40776a0ee0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7718a86b388bb57cf3b938bcec8c3f94ae4048a93facf2586f024146f1f736aa
MD5 e9621507513cc4f72dc48d6309cc9314
BLAKE2b-256 d3870e58a328f5b1f6b55005352162af5b757a110cb42d7c3d1477726c1fdd8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b5460341f2fb22d53e38a38b4d43d39f170bb8a82f6fab51f523da32a8677452
MD5 ff9a7b15c39e754091b0eac9cebd7e34
BLAKE2b-256 1385a8bb65fa51070a8b73a4bdfb09909dfbd8ef46d27e5ae79131b5a4efed46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca0e45767118586ad3b0fdb98af310b46fe3a40b0cc52dbea622542cbe42a675
MD5 fd2ff0cfbd9c474074c6a17edf5a3381
BLAKE2b-256 e1eac8796fb8cb1b62267b251305126146843bd8e47619885f3c01efa07bd023

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9992d9aa74b30cda7dad447bde7d12c68db13808c4e88e71d91ba3e56ebe5b2
MD5 17f6af0d583641cc66e62a1605f28baa
BLAKE2b-256 22f97839e1f0d371c04e6421f5f937b063e78224d192e8b70edf952586bd9b6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c92aac77ddc16698db36aa98f6117100ae226b64ff488d1576327d2bf3cef892
MD5 04335736ec5c0d46762539f85d39540d
BLAKE2b-256 5ecf7b18db4e930bf3a0bf7c1b52d73b644c8a5add110ba794adca7afe40ec58

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 136.7 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.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 1d27dd57a566bcd471112a94277921873247fb45ac20ad43e869c407ccf0b7c2
MD5 9c50f89540185ad72e8318a8bd2f70f1
BLAKE2b-256 fc4fba90df8afcb58e8afb3239345aa6dd7518618d4ff0ffd7a21b0d8cff7148

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 155.6 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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 05b18c95d5b7e22db1f75d24c1532f8f209529e4f6e93e9c2154eb80e8a5666f
MD5 0e10c8b89571754b6703e7b630f17480
BLAKE2b-256 64ceadb09022fe9af83b9745eb417b2d6b2bf2b83cd0c1b29b0e018bc863da40

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 121.9 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.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 290384ff6471b4360fd538ea5fe106de9c4d1eff8c1fa2b24f3694232366e885
MD5 e8587b897d1012ff7ee9abec6fd4300b
BLAKE2b-256 aee7cd5eaed9c3cddf35d45fe6c8fe4e0d23c724a5fe70e335a7a3d69c68f5e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34b4c2129e01ce79b94ca5abf73fc6417951fd652ec30b5a4c59b71ec872798d
MD5 91617c080ff95c9c61f9f8971c1005f3
BLAKE2b-256 3a2fb4e49f51457ad71b5334a3a64101e2bc0406f764153e01661c42ba8bbcf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 baf394cdd8b138e7af8855b71125a86218f9da961ebc7845c99d970da416f21a
MD5 bb682bd0d722b206b5a625ba4ceccf06
BLAKE2b-256 07bfe5815e01eaf7468834b6a2a32cb001d3639b3aa9352f1cb5c2dee68d21af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f23414d8a04fd81bce3a7feb0fcd356a65d90543a9112a70f7d2991d490a34f
MD5 7f19bf2d7dc4841f378f32e3d6b837d2
BLAKE2b-256 747342b1a847e5661087624280ee26d7f0e8a4b34e0d915b948ffe80d5ff448e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5092a88b3a0e5b4a38fb6383251fed157a6bb26777bc6e5ace6ea1d1a82bf0ee
MD5 f2903eed1752dac8bbc80332c284f4fa
BLAKE2b-256 c4a4302d0e18bcaeafb13dad584114884986c807f6a1247fb16ac0f141283d13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f67e118f22affa1adc57aaa084696bbdf7b324a2e70ef72201d04eed3ee1f8c8
MD5 6539fb3c9f8f2dbd531e0d98204b6183
BLAKE2b-256 fcd9fb3a3fd1f6ebf1a17295cc5f8a710ca6cc21de3d4706129c344cf0fcc882

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8f429fad2f2df932ecc16ef7cd7b29fb32bc0162a3b398b778960035200bde89
MD5 a08e1378fa6231433e14a13ff20c940c
BLAKE2b-256 ecb17edcee31e7753c720794a523a7e6715ab46dcfdca1ee85c0f7649189d634

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 133.7 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.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 78033b64195e4c4b4e52d599b813cad51b3c4b60a19d2935dfd042fc3787c75e
MD5 22a0abacb40fee7c5f53640236b86a95
BLAKE2b-256 d13c15805a151c93e700e17bee5b210a8432c2d1921b52339feedb402e564721

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 152.9 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2cae080933330e1046f6ca28b832427c3b2105df23597a082312c26c731704a3
MD5 3e4ecee918a2cf9508b46f5549aebdcb
BLAKE2b-256 8f48099b78b52af47931217564b5a9e0e6fdb25da7b728c2aedc008aabbbcc58

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 119.5 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.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f096f1ac0c87e164a6b27058a2b00b1dca309be50b94e58d60b30f2a51f44ce5
MD5 9684bc0f037885d7879545cc1f6c6573
BLAKE2b-256 4ba28b0f80a3386d6d4c2bda5d6a2de52f9c3ae77e429b74a4f94827fed404b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ed0ed99571df23e42287195e6048ee512603dee4825b22a1cddbd33bf7c61ff
MD5 81c595a69a8c9bf05261b16b66c9cd87
BLAKE2b-256 8235237ac89247eab26b3701154da8464bf44268f6d1b81497d5c8e056ec9b57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c8497870339b37060d78272a4b8b86d429136304d683440aea2cde520339593
MD5 f3e81865ba9fa1b7fa2586f0fca3e51b
BLAKE2b-256 c496b731fe50d1e4fea7384eb080b4759d7ac273f140bd8b3459052b94d40cd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2aaad5a2bec3c90e656327896b056ef2fb67b975ab87f0646ddd2baa589aaa1f
MD5 4f77d3c6772294211d40ddd8bd728b66
BLAKE2b-256 5cdf2c37cd9d789e6a2c479f7cc530aa0fe160d38619aad6f2e8ea45825b2d31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a538987b9012b80874ea50f8a4f79c1b4903815e2188f36eb3110d50edc38231
MD5 ea4f22d6c8e764e31ca0f4545a0ea24f
BLAKE2b-256 32d9acb3d21286006cd53edc0fb3a274dfc2b9ad4f2f7119976d785ee16a5392

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ce074b099130da91e51e2c89723a9f2aa2eaf33e45b6376fc20ea51367fc621
MD5 c81d01e6679385e717080715f72db19c
BLAKE2b-256 1e8c5f8991d9e027afc496917af6ce35be6b4b5e58a777aade095fac324bb3d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 135cbd7ba1c82a14aee1fb42294cf595b966b20b7914058a7ba7f0fe9dbd1953
MD5 0ac95954e07fbaab5c3875891dd2dd7c
BLAKE2b-256 6cf8d6f544a2309dab096cb72de49fea8c8ed8dd273d3dfecbe6fa7f13f4261b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 133.9 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.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d11298e8c946ed1b9a98670e36883fd3b9691cf3333db9c48c469c65f04e601c
MD5 b6ef4955dbc2d09d41c86ba0ed792bae
BLAKE2b-256 ad1cf272832a2dd082275585051774193ca1b625a7d3afdce6ffbce0b99036fa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 152.7 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 954ec5ff722a46217504eab8d52457da3cbc3a0009d6a956929c708c04d0dc0e
MD5 5aa15afe367c09ebf624693e572e5bc4
BLAKE2b-256 3590a2721e2519c16218a7340cefca382a2e85e1bc3e45f809fb553acd399fb1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 119.4 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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 44a3e3468de8f009de5a04b7daea8eed70b572935ab77be061d5e8409bc198b9
MD5 6f6b98e1171b352b523a7c2e7b924aac
BLAKE2b-256 39e06f3413375c0e7d5b358ad8fdb6338e85a45e66922516fd7d17fa702ea7c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4acd5f9b3149d18621817e3983eebcdcada71ee4049c7924de2e6a613159ca65
MD5 b7c184d26a1b226654755dce73ff8d83
BLAKE2b-256 f24f5303e14a64a70592194b2c38362b9068f6293b8fe95adc3772ceb5b5d786

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2dbe84235265f78b9fd892654b52bda20e17d9fbb7fe8bbe58a3712ff998fd0
MD5 9a1bede73b23060d7568ce267d826030
BLAKE2b-256 0d2b3035436a31dd80711b725e8be3d9f4ea71b65ee5357b26304de96e9f1ab1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6040e749598dc0eeec53baa7fff4d67760f291c6058d8b67b8baca107e638a82
MD5 f3c9735eecb9d04f3d2861613b68d08b
BLAKE2b-256 41283c31ed2ff6b9376a389d22547b93e4c84f26868fdf8d28d0510f70b963be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de0201970bfb541b6c18e5160adf138d7907ef2305d41cf8c97274f234c7c236
MD5 fc268214f3287d48c7d7fe22028fd393
BLAKE2b-256 7aff120786454ae8fdadbcb38202a89c3f09460cce0c46682a0f6a823900f1e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb8815c3e7bcc937cf20cf093482199c1a22f31eb7bd4e391e5cbcda0479c186
MD5 aab5e7a14a8a4f1338e4d80db4078685
BLAKE2b-256 491cfc10bd59d10c5f9ebd4abacd676b20711199b741ac116bca5a88c99fe146

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0bbd9b8afcc99e89066868cc7d2e62e65aff282b3a569193d8216213307ab99e
MD5 cc3e86280cd608f0b2527c3e3d597607
BLAKE2b-256 3fe8fa65c143639d454ed4374c559f9de915a32b895308947efa3fe7883c5ad5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 133.6 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.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 d859ede1d9d317dcb32a6c828f61f328160114773254ea6c2b77f9eec4f69271
MD5 7fcb540db524283dea83de41b32a83b2
BLAKE2b-256 182e4f01db203912b3717299beccff5fd0005bb6e60ebcf9449c6ae17162d37a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 153.9 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 03dc757aed62d2ccd85036ba195733ba96601bba5d291132029c8f53edd1a6ac
MD5 d67fa8408553d5985a4b266515e74b34
BLAKE2b-256 bc14fa1c4e4fcb782b4206887210bf21309101eaa9fa3ec93315883d8f5bdc57

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 119.5 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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c7bfcbcf770f936899f8a5a900092e05de6fe90b1516a787e4db1abc37a98999
MD5 1f274515a4c962ee66205a8e9b57bd94
BLAKE2b-256 e7092c79d1df01602c34978bb279b10bcac5c204e448635b9bc9a7c981d66e2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6afd84141d9ecc600addc6a83871ed4119333670c6ab5ed435c7ea46e32ec9af
MD5 2e8ca89db7a4f70c08aaf7f8a584a1c4
BLAKE2b-256 2342dae588cddf1e8ddb3261ceef5db6a7900594b96b036c46ea8645cf86be58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18e331c68b8cc9ad82ba1c3364091d0d48f8a21baa4c89cef82a983256e70cc0
MD5 36688387b944bc5310b6ae631d029c39
BLAKE2b-256 df9292f3c7a120c6ed21d369b3d74da232daa558858126dbd4895048f0d22b1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3be4666a6913467cc33700b3654416622b6dfcce4cd74647efbf01b21a40c228
MD5 bf2db76e7c8d8c7577e7577d5ccd1c1e
BLAKE2b-256 861ba907a93e4152c178d145044b36eb1cb9a0cf5723756ed0916cfbd3109bdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3df22f94231e146be37ce81e27d1f4f84300e89689e1d9ace94bbaad56a23b47
MD5 bcd0e569f79039f59ad078808cc4f758
BLAKE2b-256 a403aef9077c587c9337951256ce56fd26468b2087ff2487426c5798ef94c2bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 266a3a939fdd9469c858e19254fb4ccfed9f0292232680cfa39aad0db8f84459
MD5 4bebe9a66c63358ba20ea95ca830004c
BLAKE2b-256 64a872b6663e716490787dc86e467df46faada86d46e173615223ed9c07e44fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12234e0a086dc75a53e54ba18c6969238cc38965762a57e335889c009bdf49b5
MD5 6aaeb6d95a05cceced48571c50d79014
BLAKE2b-256 c56781ea7f5f94d1fe0878d7dc56ddfb0841f21430a71f75673db80661554b6d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 133.6 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.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 1341c75d8c844e151aa6474b18d7556a21055105496d76477a63491d64f07ca6
MD5 9921d7543470b18225f6c084bc5f3d49
BLAKE2b-256 672c120336c6b943469a248ee8a116c1f7acb2d0e229ef92880d36c74e2ea956

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 154.0 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d4f71582949a833f01c7057f1bb702b872aab1ff275f8591916df471e5ea11ba
MD5 ac4a28205c4962cdf0ec7b156e134f31
BLAKE2b-256 1527e38c915dc849a3e7d75628d2cb17b53d7130bc6862519b45a1e2674b8dee

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 119.5 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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 164b3d0929a41f87db42d1f7633cab78571088d5caa9a57e53eb9b1d801af3fd
MD5 d45b9d261256d670f46ac57cd4c00fda
BLAKE2b-256 bdd98bc39259c51a1ce51afa707688a5a027ea5b55cfdba2bef2a27fd96e7927

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c1c12e457a99ae6c1f403be645e4dd4f6b9b62ba432a66ae0bdb9ea354a0304e
MD5 f4ff92cdbb78ff27a23f0ccf4b52091f
BLAKE2b-256 d8f8d3c5b952c8c576f48f57cae5ad9153644dc0798a0fcaf12772d5863070dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a5345f2a66a533c18768282705c28075d2d46e4159788cfc68271b0b051862ad
MD5 b4637336f3cbd8c79045144e539cb77a
BLAKE2b-256 7ac347bb5c4f129e38e247b05087bb40368c96fd144cf0b69a9b44cd14283156

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d0589e257b9155e6993db7b95b983269be69a1682638bf0ba59587da5349c692
MD5 c074c39400f2932cd994735e57f691ab
BLAKE2b-256 afc18c94e658c37659ae98ca3f67c847387619cda141ad67a39032492271c474

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72da662ce510c8b7d5536cdffb2e83336218bcc83f9405171311c81f68d1e8c0
MD5 019f871d039cc68e12a6e43937e587b1
BLAKE2b-256 f2b48403a468c1eb43a52072a04635b27be3889c7e7d4df783f14c40e5d82c56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 309b0ecb6bd088c46e39f926be344366ed5a70a8cfeb3c22fcf48f27a0c0a461
MD5 0a92704e229234fc0b0a145faf9d35a7
BLAKE2b-256 be71b2d6386bd8729a97016620dd9280583f1287d9423bb8916965a308d0a97d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 626b8247cd9e17df714581d1b321bf66f09f0e2dbd20f8c9ee2c2e06a3ac0dac
MD5 bc3b0884a1082f009c1a0b54ac29582e
BLAKE2b-256 e203c5558e169d4efc376c9d0132333fd37e17d7f980f05132582cf55d491c59

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 133.7 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.3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 d612a0d142e11d04c8a6ac5be3a04f4bfcf14e5d635b121da61a1552a92643e4
MD5 2e2a369a7cb0c3db9bd44500e6d6fe35
BLAKE2b-256 1140fa1da4ce685fc43b92d2fb8ca632c9004a9d44d247486f2e3d9c2999d219

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 154.2 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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ac7b033d1d3a60de82695ea3959c09382f6b7776d06326cd87ebbb945023e1b9
MD5 afc10ca1400654e7921a7ccac54e12f9
BLAKE2b-256 970ef6a734ff59f4ac28834d8d6202503489727e04677d755c66baff0dfc1bdc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 119.4 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.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d843d71f67ca706c4821b30d30f90a728474fea5d03892403f6b1e63c0a39d27
MD5 431346888a6e50b297856719b3cc0155
BLAKE2b-256 304c976b62da365514623db49aff9e9d3f4d085c3336e9e6386441e9b5b63c3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7430561c68e8755f77ba78122e55b6dcae2d19170e1c456f3047592eb2f9a3d0
MD5 2394adf95c9d64a0203b0e18e5057437
BLAKE2b-256 642c786ac06352ee749ef79825e2e28bf37d51e9320de240041774f4e45cc871

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47225f20dbc5559f2546f3db90c1d8fa124d786dbea96fd54a7989ff722b71a4
MD5 02237b8da213ad3e3524a5cb4d978a5f
BLAKE2b-256 c9b60268937ee555370932ee07fe6eeef8f0ad6c0a65de9ead6356aab3133cbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c4cdafcb5350e636cc7cd17afd081548c009a4b8a27207df3790592c394c446e
MD5 5284a95e1ab345e0026f8976519f97f2
BLAKE2b-256 cee052d5886c8ea34887a9bc071c11eca188a3cf26bf61e24ab0b6fa12367645

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 df2708f95b7f9bc7f3c673368ea123cf143db62dd4b5fa6324c7bc08ba25f93a
MD5 685aa5ff55f56e02a43b20809260529e
BLAKE2b-256 76aca3c2006d8bad558155c32ecd286dd372d1578fee242196f62a91ef870d3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edaa060524eb305bf0f7dd9f9d5f37085b8b447ca78967d944c5bb7e10251842
MD5 9af16f0b0cedbb5135511852e422c97b
BLAKE2b-256 f52b1371ee416f358983a0d2ebf1e2fe9fb21cf26f719d68990fe2ced019b474

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b668ee3b357d87f5b433804b1bb326b50813554eb69168830b53b97b59093376
MD5 d6804718e7f4d66d7ba02cb211ab1a26
BLAKE2b-256 1f078fdff8a93fdb62aaf0ea9e529903f392fd5513555ff9d489e0a46f216f4a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 151.9 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.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 56f2e00b09dc6e7d5ba39e74fe16dd8565deac51458c45335e400ac39bd3d9de
MD5 76b6ea14071ff5209b866dd60d19de0b
BLAKE2b-256 a0a2871d12f8245ffb77eb59da4c60f8d498d352266e2e0fd8136efa44efb606

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.4.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 119.3 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.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0dd66ba2a3c7a660195ccd46d47530239d517f9554f65a338056ff43693d5a07
MD5 e699e6b114bc6dd38a211608530d126f
BLAKE2b-256 ace2dcbfa77e4cabc89be67044573ed8c1f2fc17651baf748475250343739145

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f05d72a28f2de28c98c85eeac407e9f0db239cf6787de5eb3aa17049f0a41a6
MD5 8240a06a175c14d7f750cca075cffce5
BLAKE2b-256 d43d9ebbc0cfdcfebfc9f6f26caf64ef42c98288c31e33a39b7d4020d06e34ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5856e493b0ee9f4fcc7d5c5488840412f20217cf7769a9cc2fb89c90e5713e99
MD5 683770b43115fcf5983e27f067806aa4
BLAKE2b-256 bdb6f27287974939ebb4cc9f1a0e89b05c75ac593e40aa2efa60cb0eb286eb1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5efc469afd2a51f32408f1b02b18f242939a8804e7c51ebbc0bf523f0df7eccf
MD5 537c54b015a78efcd85db6521df0a82c
BLAKE2b-256 8b7f23772af17d7b4d511862b999d846c781902ab45ee68f7acdc1ef4f15b258

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fcc3ed38691d39bd932526dddf39db6fc5c1673cbfa657c956cb2d0d6318f17c
MD5 e238fdd24b282529759e987ad154c521
BLAKE2b-256 2138e8bb4be83f88def8ef7b5668fb7c88659f168bd3a431317de3f8021a99ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bf370fe3461ca269460d58dd58c84f897b41d8c9eb7ab33d8d910321b6a69a3
MD5 72f2fa957ffe0514330514ab91b45ccc
BLAKE2b-256 5c4751f4e31de1fbc7c741777180a3f8700f6c7e6410b4c096120f935ffa07c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.4.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2f8dddc95496decbb7def3379bd5fc669370c4b27faf6afada919f5f0558f5c6
MD5 7c61ccafae6bf81e8ab0653d70ab85a3
BLAKE2b-256 9f0e8c0c6c41c53a73000f3796455572e4eee6a3367f74dcb37bd9ca7630994a

See more details on using hashes here.

Provenance

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