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

Uploaded CPython 3.14tWindows ARM64

miniexact-1.5-cp314-cp314t-win_amd64.whl (167.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

miniexact-1.5-cp314-cp314t-win32.whl (126.5 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

miniexact-1.5-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (156.5 kB view details)

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

miniexact-1.5-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (147.3 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

miniexact-1.5-cp314-cp314t-macosx_10_13_x86_64.whl (145.8 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

miniexact-1.5-cp314-cp314-win_arm64.whl (138.5 kB view details)

Uploaded CPython 3.14Windows ARM64

miniexact-1.5-cp314-cp314-win_amd64.whl (157.1 kB view details)

Uploaded CPython 3.14Windows x86-64

miniexact-1.5-cp314-cp314-win32.whl (122.9 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

miniexact-1.5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (159.5 kB view details)

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

miniexact-1.5-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (148.8 kB view details)

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

miniexact-1.5-cp314-cp314-macosx_11_0_arm64.whl (122.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

miniexact-1.5-cp314-cp314-macosx_10_13_x86_64.whl (143.1 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

miniexact-1.5-cp313-cp313-win_arm64.whl (135.1 kB view details)

Uploaded CPython 3.13Windows ARM64

miniexact-1.5-cp313-cp313-win_amd64.whl (154.3 kB view details)

Uploaded CPython 3.13Windows x86-64

miniexact-1.5-cp313-cp313-win32.whl (120.5 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

miniexact-1.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (159.4 kB view details)

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

miniexact-1.5-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (148.3 kB view details)

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

miniexact-1.5-cp313-cp313-macosx_11_0_arm64.whl (122.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

miniexact-1.5-cp313-cp313-macosx_10_13_x86_64.whl (143.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

miniexact-1.5-cp312-cp312-win_arm64.whl (135.1 kB view details)

Uploaded CPython 3.12Windows ARM64

miniexact-1.5-cp312-cp312-win_amd64.whl (154.3 kB view details)

Uploaded CPython 3.12Windows x86-64

miniexact-1.5-cp312-cp312-win32.whl (120.7 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

miniexact-1.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (159.4 kB view details)

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

miniexact-1.5-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (148.3 kB view details)

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

miniexact-1.5-cp312-cp312-macosx_11_0_arm64.whl (122.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

miniexact-1.5-cp312-cp312-macosx_10_13_x86_64.whl (143.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

miniexact-1.5-cp311-cp311-win_arm64.whl (134.9 kB view details)

Uploaded CPython 3.11Windows ARM64

miniexact-1.5-cp311-cp311-win_amd64.whl (155.5 kB view details)

Uploaded CPython 3.11Windows x86-64

miniexact-1.5-cp311-cp311-win32.whl (120.7 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

miniexact-1.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (159.3 kB view details)

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

miniexact-1.5-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (148.4 kB view details)

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

miniexact-1.5-cp311-cp311-macosx_11_0_arm64.whl (121.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

miniexact-1.5-cp311-cp311-macosx_10_9_x86_64.whl (142.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

miniexact-1.5-cp310-cp310-win_arm64.whl (134.7 kB view details)

Uploaded CPython 3.10Windows ARM64

miniexact-1.5-cp310-cp310-win_amd64.whl (155.5 kB view details)

Uploaded CPython 3.10Windows x86-64

miniexact-1.5-cp310-cp310-win32.whl (120.7 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

miniexact-1.5-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (159.4 kB view details)

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

miniexact-1.5-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (148.4 kB view details)

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

miniexact-1.5-cp310-cp310-macosx_11_0_arm64.whl (121.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

miniexact-1.5-cp310-cp310-macosx_10_9_x86_64.whl (142.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

miniexact-1.5-cp39-cp39-win_arm64.whl (134.9 kB view details)

Uploaded CPython 3.9Windows ARM64

miniexact-1.5-cp39-cp39-win_amd64.whl (155.4 kB view details)

Uploaded CPython 3.9Windows x86-64

miniexact-1.5-cp39-cp39-win32.whl (120.7 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

miniexact-1.5-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (159.4 kB view details)

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

miniexact-1.5-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (148.3 kB view details)

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

miniexact-1.5-cp39-cp39-macosx_11_0_arm64.whl (121.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

miniexact-1.5-cp39-cp39-macosx_10_9_x86_64.whl (142.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

miniexact-1.5-cp38-cp38-win_amd64.whl (153.3 kB view details)

Uploaded CPython 3.8Windows x86-64

miniexact-1.5-cp38-cp38-win32.whl (120.6 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

miniexact-1.5-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (159.8 kB view details)

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

miniexact-1.5-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.0 kB view details)

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

miniexact-1.5-cp38-cp38-macosx_11_0_arm64.whl (121.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

miniexact-1.5-cp38-cp38-macosx_10_9_x86_64.whl (142.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: miniexact-1.5.tar.gz
  • Upload date:
  • Size: 345.9 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.tar.gz
Algorithm Hash digest
SHA256 a9ecb3b74884aa0ef4c04a4e3edc254ea2105974d84a1a29643510a7f64f8113
MD5 753d1fffaf26b8c1ad85a44e970fa8b9
BLAKE2b-256 205069914d283569ee1621ff9febc6231354c815709145de4e8a969185a0672f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 142.1 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-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 ab567c241a71ef24b88ed7345347986ef1e38fb73dc56b5be2500bb152db87ff
MD5 7ed8feda73e8c7dda4c1b9c37ed03d63
BLAKE2b-256 601c7b60f7e75f26377e93b93eee081f288ad2fdbf85285a1e66feeb2d3b7008

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 167.1 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-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c8dab56bbad1e6e86244b261524b0608e32454939aaae801cc8154a516cb5a87
MD5 c07bd8b219e21f7a79f40f831af0f065
BLAKE2b-256 c4ecf5e1c2b1970d89a0c209c47d27d8f888504dae6b5b803bbee37c421c2794

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 126.5 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-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 44e447eccdd5e0cfc12e28bd2e6d143065c8b1c0a97ece007c79cb7107d948c2
MD5 bc7dc35e5f7ec4e5adb1c9f3f751397d
BLAKE2b-256 9e09f98dec5aae9ed4ce676f70863504ce47dcb76fc7ae586acfe59f39e00306

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea62fe60b0f8453d2aab9e6da3a826e7a070e1db81e238cf574edd8df53364fb
MD5 9fde64c256f73b5f35b3ff2f2ad987d8
BLAKE2b-256 1d3138d3f539510e63b0cb79a1ccd00ae582fc841d8e102515f2152f8d7fe5c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 658f5c1596102206fc091d06ec33318f48e2e2877f78285156cbe9ad27d564fe
MD5 7ba833927123edf83832515daeafbc84
BLAKE2b-256 5f247784f81476a38d96b8e81fc197f75cc6ac9a5f7a979a2406e9197e3092e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c8bb7a30b1853a69f4329316a0ca057236e52344d955c38aa4b82147eff2a951
MD5 214cc1c9e1b88fa3126e26df56289de3
BLAKE2b-256 bae3ba492ff89b59a31f765a1c378b215e1d5ffd13616785911cd381091d6198

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b008df996526c89dd2d5ec5ac55c12f66f3bbdb15180f175542eea14e40d0a5e
MD5 cbee531e24a1291a865bf20a10c46307
BLAKE2b-256 dafda12b8317d28240ddf5d51c830695645c998939d1a4380e4bd833b6ae0fff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a99e4fe8090dc5d11344f6cab3fadde3cb41f5e9cfd60526c812169576716302
MD5 b288771503a101a0c026dd6ef78c3b11
BLAKE2b-256 feb313c844ce95b9ddc6d544cc2d70e7255b61bf1c3d66140cb72d296cf5017c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 410e809e16fc37fe6ca308b899ffb5c0971c726cdd0c1ad83b638a4f84ed7b1f
MD5 f1fe298d207c957f7df3ac8622ff1ae8
BLAKE2b-256 fe6d074856f4da81805d0f26059f48cbcb8a060717135cd6d89a1732fb7b7d64

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 138.5 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-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4178542af53d49dfcc9c584d6ac5c71434dc8589a8afebc9aeeda6cd4987faa3
MD5 ede67bc7b9bf68e85df22c62c4993904
BLAKE2b-256 1d44c42884d79203c091928a058e78fda2ede9c0de21e086a39dccc964dcaa73

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 157.1 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-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3da4bcd4cfdc83a5e422ff700f46c6c018a11146e31698cf494f68835b1ac646
MD5 161bba4f3b36240ef6324309269ec54a
BLAKE2b-256 a75af92b685fc55777f4e965d5afedca7cda0d7e6b23e03fa915091cdfbeb67d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp314-cp314-win32.whl
  • Upload date:
  • Size: 122.9 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-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b9954d9c95c595e52ae7e8ba6c256425e81065ed1d40a52dd7240adbdd8abb6a
MD5 4edba633504ea4df0ce529d47f767b7a
BLAKE2b-256 a0d85f1d45273aebe0a50164403e85107cc022fca56fa1dcd72a7346fda17537

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e01e71670210e3fa6bc6f4ab4834bb93f19fed8f2314be439feb64c70758629
MD5 6ee413214054cdafb22051fe320e38c1
BLAKE2b-256 47ce584956032be6014b70185456f13995d10f37e453a8490457c2fba42afe95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9fcdf2476239f58bccb0f6f9cfec74a1e1b00d97bcd9cac1c7a83f02e4bffc04
MD5 e3b55b8365125679d89a1c62276cfcd6
BLAKE2b-256 134098e39eee46a3709a7f40ab34a5868583e8c3dc3d23d738d7ac705543c9c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9c6aacd87f5fa808a66c0955cf7fa14f14121754cbec2aa1f027e92ec5bd9a2
MD5 9186576cadc8277641c2bfe8ee9720ff
BLAKE2b-256 ff666828976bdf6e2328f1434408addd66095f12a9258d12558d589a77585ad0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d7bf217824a9a9761ac0929f63de7fe26555fafd135d2155cfa29fe586b30693
MD5 ce767a3556d44c7aa85e951f3c5552c5
BLAKE2b-256 7cad1803032f6f67aa664bb1d640cc80e0db77ff51e5fd2e3adbd9fb1cb11b1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e854c53404b5a4377dd17b6dae99b913f42c53ed3d59e6c39c0b2a18569ca25
MD5 b04d8c2ae4a34447c03b210d51ebda19
BLAKE2b-256 dfc1ee8d50b15ee4b92f3a41507b916f47d71f1a1730ffc5b530d957c21fe10c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 085ad2401a1e354d41347123f0028eb59b57da8b0a15ca84d482fd88988fcf30
MD5 98304d7603ad26b8905ae5ccdf1878bb
BLAKE2b-256 dd710f4bc8e63e948bcd021aed6d36f5d79c4fcafccf1e1d98b85df7c98a215a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 135.1 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-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 261ab5d5b83bddff28bd5791984c5eba087fc0784a6d60c5772fdeb94550e9f4
MD5 447113845b7b8aa0ef86913292ee9f0c
BLAKE2b-256 de634bd9e054c5c41e541e5961ab0b1baf77e0454e7414e8e0a5589e012d8bac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 154.3 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-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4911985d0a4364c42ad16eb71462cc03715161f3548dc94474ba2e5217d719f7
MD5 b960a0fc190efe249ae25a0ef3c53490
BLAKE2b-256 d3bf33e7658716b89ea09b7c5d801bb475bb14e3a76eed6971d3d5682a41dfa1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 120.5 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-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e879e3eee4a7e3eb537b9b4bc1f1937b3296a52d38910e2ca3067245f5fa6829
MD5 a46bf1cc8bc84c672f70c0b2dac46e4f
BLAKE2b-256 58b097998eddf9f9691a340bd6e41a8bd214a55ceff56c465e54d0451a98a0e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dbeaa2761e181640ae103ee362ba13f9b902708db5084b25b900d72090eb9265
MD5 d36ad5e891c25482b4a84ab3ab347a06
BLAKE2b-256 abd3e333ce390ce7604203f30d566ebaf4774998f9d70535a3a003a8c71141e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c4a43e97353af0fbcdf25a0f0adca9504895c2f6359cd1150887ae0cee908940
MD5 beac703524f250d337c86a6563806610
BLAKE2b-256 3639e2d992d4daa68fc4d7f1f216e4b8489018955d168d2da8b9a9e4ccbcb598

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0019e0ef4f9f9e1e7da33bc6252579b773f0d2864a6ccee4c6f7a53ac303015a
MD5 26b86d3a1bc1a0d898661ed002b44fbb
BLAKE2b-256 41af51de3b73c64d2355222dbea0ad103fbcb72bf5f372d71493f7d5eb9c1e60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8c79f9e348108c05be5419768012b874325ee219ede0ad9cf0de8e3fd297c021
MD5 ace92b624fc3ec0c894efd7b4992eb25
BLAKE2b-256 03e9d50b4331cfedaf774a7d81b1f770d20a528b0f89837b63428c240bee7dd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6984477eeaa8ac2c436055a6af4ad3345a4fd66847c2054e7c9d14391c5a5519
MD5 f258e6c48068a792015bd1d1a4188542
BLAKE2b-256 f78d2b465f01aec89dc7b266045795faa7780337b5cb8207c1d22fe04d697ba8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6d07d4ac5885f60f1f19b0431de4458a4efac005b8e6818db49404b937e919f1
MD5 ac8a7c07d434acaf76e14e947ef1fc5d
BLAKE2b-256 9d401afc66196dabb4391ad0b2f4327de114999a0b903d734358b2ad2f01647a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 135.1 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-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 26d6c30b230c791feb216cb94ea44347fd6d26e4b4a6d9653a2c25b0739594f1
MD5 0b9aea921614aa0ee0cd645fca572aad
BLAKE2b-256 d68f3243342424e791c361c06ba34d2aac811e04cdaae80bf8b9c15efb445e17

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 154.3 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-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5fa52dc8e22646f71203291400dc8ed667295b66e55faaf657062fc084f5dd49
MD5 d85cff462aeab999c66ce24bfa3f712f
BLAKE2b-256 2ef29285c1d32ca3ccb40190ffc838c5f7f7639c21dcc1922f27994b108fac8f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 120.7 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-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 25b4ef9d37260e78052904a82902dc8250c18ff96806c8182568c20ae6c5f9b8
MD5 f01aabfa2025221e4f6af4c10080165d
BLAKE2b-256 d0ed485b4e3db22ebd54a5be0d7e20a30fe43cba5cd785c55ee7cdd723cf08b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3995e6b74e03da1748d1cebddf931ab1b96a82ad74c9e22adcd7c710a316887
MD5 15c2d24b25132c4f552449807a48c2f6
BLAKE2b-256 63a0254128d5de07bfbd188a975789572b6f51c186b5d2f628fc88a573c190c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65a42a2d5063831a9c5491421403a0f0214e16cfd439653fd397dc3fe7f9b93c
MD5 56316f75efea4bf573f70840fc295085
BLAKE2b-256 911e75f766fd936065523987c961e1af25db9cecf4a5e61f97b88def5bb8e3b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4abefec20d3f5fc9346f7f91a9a75a789b1d451db7f653f7d7120aad2b2d2f70
MD5 7fd5337018a5810c1084b790242eed5d
BLAKE2b-256 3c64650e0b007fe37a1f33365b3a123fd57b36078188b589b3ab33d880f07403

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4d23c5d32b16921a04f40b47ed6298fdedc497a60203ebcb6b3064a39ff7b3d4
MD5 40de9809385aeea9dc965e5145b45240
BLAKE2b-256 75c41bfbf4eaf4b6dc2b1f0ba55d5479c7c8953e411416c3a9334fda8a459bd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c704eac850f4f8b399a58417640697a86bfd4f13c61c62d5f1759d5f8e0e883a
MD5 a73ecb593b8ba8bac21bf0a5f21ac8c2
BLAKE2b-256 86aff744224babad80d59577a5c172e60547024b510b17c85f61ea1e69570e35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ca7b394eeb60241057a8bf1bb4ca0891bd191b8c38d7e6a35f752441b313713a
MD5 4db408d238313422d9d57636ac2a5448
BLAKE2b-256 12dad035898b56b4a42e107a194367d895bfc3fe9e9bef9fe52322a39361283d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 134.9 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-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 03da99d3cfb78aa79d58947c342b576dbc6b476e0431aa243a3ffe45e75d4f51
MD5 e1b749efe9e4919a5783079a6fd0def3
BLAKE2b-256 11b2a5602c3cd5e3443609bb142e6474ad366f285a91829ff56d548ce2b2bc27

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 155.5 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-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 edb70b337470e5ccea6e4ed4e2cf1771cbc3856a4c539515b251e7b6bf89741c
MD5 ff3b859a754db64fc59ed959ab4065fb
BLAKE2b-256 b3040653e8b450b87344a0f2a20e73b042d3cbff1dd3a976e565280f5867a8d1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 120.7 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-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 71b6f5b991cd2356e7937d6fcc9b1899806937c6d4d1ebf64d7586f52c8834fe
MD5 ec1d607a7ff6759a94fac5e377ddc431
BLAKE2b-256 50cddbb78266dbe68ac7b849e533fcb369d9cf334e964bc3dec97b8f88747208

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0020bf6b44d8a53c350c68a5ad058d0e93c79aa5181f79bdcc408785d079d797
MD5 cb1b95322d1430dec9d6e3f4c4a3c143
BLAKE2b-256 7451ac2432ae7b1635567f4452b63b002d89aa2b91ca15369d209aee0cef3f8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3bd2bd3e63622d62b6b9df12b42ec2e3784bed118e125f2969384d312a311dd6
MD5 ac4acf866d201daeae672b5d00c04bb0
BLAKE2b-256 79f3a0cf057505cf6224a133ced86ff33f36aa31709555a0fe23493cc92d983b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad1186d6454834121d6747c900f837f794137977c71d12d093f1bd35364bc323
MD5 ff58650e84e2963c55b10a8a6166f7eb
BLAKE2b-256 552bf78d14a8e06756efcf6f12b9dadd30a6f7124feba5de41d58fd1876aee07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4406829dd95dc5b601013e572a5692771616cc7812c57177a9a90ee60eca3c80
MD5 59ac94cfaf702a8853750f725de3b0ee
BLAKE2b-256 53f3c869f835270ba2ff0e664e6a83a232bca704320d06ec46e8d56bab3eab04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5786bdb60260a02bc91ab3616b82411458ab9695cc6ba458da298772d5f358a9
MD5 e9328b737dc57acbede3a76b8a961bf5
BLAKE2b-256 9074a1f242b8ee23a5dcc72c86f71f0816ebb8271ebb5f654bffe52806ac7bb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7f886f225a1b82974c1c00fae4426f9051000fa5d13336f92c8a18ca936ea0cc
MD5 050bdbc9969a71d3389d5b79599addc9
BLAKE2b-256 339c07e787f1385232d553a571ac1612257669b28a067e1e612c121257137441

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 134.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-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 7c8476dab0feaf12e388bc020dd0e298d3242742a8d86fc761b06e807236885e
MD5 8e1114ef6b0645307e4427654502a0aa
BLAKE2b-256 dcd89aba095caabb66dff928ca6e421788025c855e8bf6331a1d6b257f0b482e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 155.5 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-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f22d62a4d093afddc0c8dbd3440a344b19a492d723ccf8e74fe75bc7f57bb66b
MD5 2975709eede7137ac59902d795e17a6a
BLAKE2b-256 ba6115f994ba886ccc57b05419db421795d387aa113f834a67ce57d5d5dbc997

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 120.7 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-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 53bdbc3548eb7773f3c201d16ef6458152583231d31ced70b210ceec46d04fa2
MD5 724c2d21deba39ed714da937bbefb935
BLAKE2b-256 a7ca694ae174cc869cb2ad9ddfb0b52286be25ff6e3460b2421c361f6999008c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5fbbdeb86a92c4886bb5cc7ec2ea470c8576afc2a6e17e98dffc98583a0c6d5
MD5 4a041b3e6459b3bc4d418c21eb219cdf
BLAKE2b-256 eed90ff8575703db8943f96e180f1286a864c60e7d6201e4bc840e762adec643

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e45a9a12463e7b16f72eed39297226d68b1cdc0d9b546d0a56315fe56029dd9
MD5 840966c699c77e0e40fc6d7efaca8396
BLAKE2b-256 3e6513662d15a08738d8ceeb669cdaa27065907e0869646ebcf3d2cab9312560

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b5472690e86f6905edf61633276a9ecc21142b0313713b94656b83829dd804bb
MD5 8548a0ded838160e169bf3cb13d0d391
BLAKE2b-256 e0daa13ac8b383a19a86a9b7c010bb39f616d8ed07aa95c83431b38d812a090b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 71e861008a2c3c85f8efcf91a02ee3d145c2477f8a3524c750073881d255316a
MD5 4176b1a01f9c83fe3c0481a99d21137e
BLAKE2b-256 48e61cf15cd22fb3fecb07655f6a9aa8272bee0a4e5cb0a93afce24d32f61917

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b950501d23f9f1c201d8432d37153e0297c8274cb7bd2cf93922b651c98ae12
MD5 da08cb86b1234539a4ee08f397e2ec99
BLAKE2b-256 9771f4812214083a2600468bac3e837e3c59f7889e0e3b531d76a4acdab1a8c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f45d77819b56da60d23fc1ecc69f4ad8e8cba64ecbb230a41d39297ed815a90
MD5 b3702cc2e2fb166ecd13f8b1cef6ace9
BLAKE2b-256 9e2edfc7d180dc96c57431b9150d33a0e6e57c048d96f1f75d65f9ba00b7291c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 134.9 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-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 bcc7521906af2182449bf88470513260d9ead7826a121b6c91b4ee769e800054
MD5 b9a077e4116df3c4e9a4dc0595ba000d
BLAKE2b-256 dbe2e1df2c2b90b32db7ae71f1ed3ee9ec2ab2178a40b424053b1a2c94864f05

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 155.4 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-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 750897c448ad221d267841035ebc96db60bc78b1fcec283e0072c92f91943a51
MD5 f235abe1aa384cfc9c92a4cdf2bd4a06
BLAKE2b-256 107af3f1eaee077eb153b3c4b9180a38667cf5a642459a24519a1d90fa0c3422

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 120.7 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-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e2c8de7c33d8063d91fd100937ccc8657bf9a52d25a74fb4380cc0a4691a15f8
MD5 e55f96fde5a453d94544add9435cebf7
BLAKE2b-256 cbed892463644bd4063244c7d44462991ab9eea4d313671a7c4519e81169b2fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ba481dea5910452ee1fc4b1ad6dd3b10cdcf957a76cf24e2fd289046334531b
MD5 af0fff2b4d45ce8f4458bf1619009385
BLAKE2b-256 a2e7e366858f2a24f5ae7b269604d97c24525e52edce13e95b0a565a238da7ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6bae9de5a8d652ffb0898cec64638a043d917916ce2c8d7beb7cdbde9b443c1
MD5 32294f61f319f69756f55e53925b09cd
BLAKE2b-256 68a938f5e357050010e4f94ad95b2b4a2b3231c196ee3b5b02fb481e7befc293

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3708e6d38c1c79f041b9041c860b421bcb58bdb73e0106f2e2675242f4f04750
MD5 c05cb703bc52051edc7b5081b1eae340
BLAKE2b-256 7c50539278ad2195be82364f4e0002d274c90eeaf8125b2d94a4ec3308e02972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bb4b071ea7b2b255721e4d1016c75e1abd9d9f3ca3248461b4cec229e33694a4
MD5 b6b36bd998b4c04c0d1c07e0dfa100fa
BLAKE2b-256 ac54df6c0ac404eba1e7e404b697899cbde27b14dbd80d33522bdbe0f98ddb2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a07f05550b4bd0b7d76165cdfa23acda830f45cf91fbb0d95fc73777375a9de
MD5 e20df8337d8a5ece8e7a5c6fce2b87de
BLAKE2b-256 280decb6e4c555bb69dd7f9443fd770921eddb45810d17879acd93e45065ef70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 16d6e76fad3d897a1c4d3a7d41bde262bc5ddd3353caf48c081555b2fa026a24
MD5 43c4e61933c20b7e2673ee7795a8af4a
BLAKE2b-256 430a94de63f7743b0ad6e54e3ad7808cba29db6b9fa1566a2c7b4c4a74866707

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 153.3 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-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 260898cf8b5ac480a866e3db8baf6ed7fe4325c45073784fd5aa6550e912c108
MD5 b05083c8070e81d02a782887b4d1151a
BLAKE2b-256 f45f3dee4692ff353cf685f569dae78e99e8cb650b3e906acd0cdf6fb55b9130

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 120.6 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-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c5830e1d5ceab3ab041d86ddf8a9d7c65cf1d9aa63e4454ce742b4ddad8a88f8
MD5 52a26b733f98698c9a7e938141b63cf5
BLAKE2b-256 bebbd55772bba46f5cf053d893d4834df2ce2f250d230efe80d3c8b1be8e7133

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e485dac46f42ce4be77f8cff0bed1b81b6f0e0f1b2b5d1bb1264b78bb25806c
MD5 f2db317ff4db106cd3e38de435067879
BLAKE2b-256 875842e91f8472333c81d99087895f72d50621a1aeeb414f26c4cd7749c1fc7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 783100c4ca36da44659e89cb3d22018640eaf2ec2e2b71f7c3aff7145e963543
MD5 e249cd4ae81d1ba5670fbabe53f802ec
BLAKE2b-256 349175fec54061d39f27f90127313d8ecf725c10355dd1b198dfa67e9f2f9a80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd2131351ca3f764dbbcaf8364504fbac153e8b0a849ecb356acc514f30d5756
MD5 20e4f3ec8781c67f49a0fc368a42f620
BLAKE2b-256 61d1aff060daa4c66035f4f36a082e5cd8b288a18f406e7c0fbb95be9b330dcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cdb36c7d8ab82b861c881f095ab7052a74707000a7c79becbe34d55c7ebab20a
MD5 0f7f9d7f7323e552e7da331738152d1a
BLAKE2b-256 f5d18672017bac170fa246f85206651a43239861bfcc89ecdc8733ecbfd9ffdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d905e41a9e5ca5a568e8378a7ab00c49ca767e3e6eaf366cb707f82493804de
MD5 c41464a1d1a2a33dd66e5af744fa8724
BLAKE2b-256 7678dd2ba32fc8faeef31b27287b9ce390979cb57f51ca62e16b239a2317ec31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 64938de4e5878ec3fd46118c3c402fc13f62fbf71b335f8cd689b8b88037a1ae
MD5 09c6ed949f41d691abc5ec671a2efd2c
BLAKE2b-256 f167dd22a8e35b2c9c1c64a13c47c33f34ece463b70a77fec7729e79ba4c6965

See more details on using hashes here.

Provenance

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