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

Uploaded CPython 3.14tWindows ARM64

miniexact-1.6-cp314-cp314t-win_amd64.whl (161.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

miniexact-1.6-cp314-cp314t-win32.whl (127.4 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

miniexact-1.6-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (157.0 kB view details)

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

miniexact-1.6-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.0 kB view details)

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

miniexact-1.6-cp314-cp314t-macosx_11_0_arm64.whl (130.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

miniexact-1.6-cp314-cp314t-macosx_10_15_x86_64.whl (150.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

miniexact-1.6-cp314-cp314-win_arm64.whl (131.5 kB view details)

Uploaded CPython 3.14Windows ARM64

miniexact-1.6-cp314-cp314-win_amd64.whl (152.5 kB view details)

Uploaded CPython 3.14Windows x86-64

miniexact-1.6-cp314-cp314-win32.whl (123.7 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

miniexact-1.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (159.9 kB view details)

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

miniexact-1.6-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.7 kB view details)

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

miniexact-1.6-cp314-cp314-macosx_11_0_arm64.whl (128.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

miniexact-1.6-cp314-cp314-macosx_10_15_x86_64.whl (147.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

miniexact-1.6-cp313-cp313-win_arm64.whl (128.4 kB view details)

Uploaded CPython 3.13Windows ARM64

miniexact-1.6-cp313-cp313-win_amd64.whl (148.6 kB view details)

Uploaded CPython 3.13Windows x86-64

miniexact-1.6-cp313-cp313-win32.whl (121.2 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

miniexact-1.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (159.8 kB view details)

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

miniexact-1.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.6 kB view details)

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

miniexact-1.6-cp313-cp313-macosx_11_0_arm64.whl (128.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

miniexact-1.6-cp313-cp313-macosx_10_13_x86_64.whl (146.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

miniexact-1.6-cp312-cp312-win_arm64.whl (128.8 kB view details)

Uploaded CPython 3.12Windows ARM64

miniexact-1.6-cp312-cp312-win_amd64.whl (148.7 kB view details)

Uploaded CPython 3.12Windows x86-64

miniexact-1.6-cp312-cp312-win32.whl (121.4 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

miniexact-1.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (160.1 kB view details)

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

miniexact-1.6-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.7 kB view details)

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

miniexact-1.6-cp312-cp312-macosx_11_0_arm64.whl (128.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

miniexact-1.6-cp312-cp312-macosx_10_13_x86_64.whl (146.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

miniexact-1.6-cp311-cp311-win_arm64.whl (128.7 kB view details)

Uploaded CPython 3.11Windows ARM64

miniexact-1.6-cp311-cp311-win_amd64.whl (149.3 kB view details)

Uploaded CPython 3.11Windows x86-64

miniexact-1.6-cp311-cp311-win32.whl (121.5 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

miniexact-1.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (160.0 kB view details)

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

miniexact-1.6-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.5 kB view details)

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

miniexact-1.6-cp311-cp311-macosx_11_0_arm64.whl (128.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

miniexact-1.6-cp311-cp311-macosx_10_9_x86_64.whl (146.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

miniexact-1.6-cp310-cp310-win_arm64.whl (128.8 kB view details)

Uploaded CPython 3.10Windows ARM64

miniexact-1.6-cp310-cp310-win_amd64.whl (149.3 kB view details)

Uploaded CPython 3.10Windows x86-64

miniexact-1.6-cp310-cp310-win32.whl (121.4 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

miniexact-1.6-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (160.0 kB view details)

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

miniexact-1.6-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.5 kB view details)

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

miniexact-1.6-cp310-cp310-macosx_11_0_arm64.whl (128.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

miniexact-1.6-cp310-cp310-macosx_10_9_x86_64.whl (146.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

miniexact-1.6-cp39-cp39-win_arm64.whl (128.9 kB view details)

Uploaded CPython 3.9Windows ARM64

miniexact-1.6-cp39-cp39-win_amd64.whl (149.3 kB view details)

Uploaded CPython 3.9Windows x86-64

miniexact-1.6-cp39-cp39-win32.whl (121.5 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

miniexact-1.6-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (160.0 kB view details)

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

miniexact-1.6-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.5 kB view details)

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

miniexact-1.6-cp39-cp39-macosx_11_0_arm64.whl (128.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

miniexact-1.6-cp39-cp39-macosx_10_9_x86_64.whl (146.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

miniexact-1.6-cp38-cp38-win_amd64.whl (149.3 kB view details)

Uploaded CPython 3.8Windows x86-64

miniexact-1.6-cp38-cp38-win32.whl (121.3 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

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

miniexact-1.6-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.9 kB view details)

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

miniexact-1.6-cp38-cp38-macosx_11_0_arm64.whl (128.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

miniexact-1.6-cp38-cp38-macosx_10_9_x86_64.whl (145.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: miniexact-1.6.tar.gz
  • Upload date:
  • Size: 346.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.6.tar.gz
Algorithm Hash digest
SHA256 457dadf87a9f0b7b1ec99fcd436fdb3963a5ec00abefb4bcaa2398f1ae29e500
MD5 639ef986fea373d452689dc700ea60d0
BLAKE2b-256 c58e8bff92f787490d5df69c147e118f3df1acf3e0fc8713263ea76bf7aff1d6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 135.4 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.6-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 691e527b3a956ca080aef3997211d8f1181efb3410595c45907184cc008204bd
MD5 2c2caaf60be1c78f9bfa082f92a4b328
BLAKE2b-256 9934e415bd6aad14ea1bc47b377cb41fa1d1027ae7b16bb39fc7e1cd64fae306

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 161.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.6-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 27e2e4b62b24a7af0926935fb6d2845a880c0537ee93b90b7bdcde93062b14b9
MD5 285a2f2b95eae9b3ce79172a90985536
BLAKE2b-256 5f7c04cfa91b6e567a3d420446b3387b4f1eea6fcfffa3560a0113e47d8cd248

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 127.4 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.6-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 eb693048703814c8a58b337e02a848e755037ca2194c02aa1cebfc922ea1628d
MD5 565fbc29f41336f2003f569524e42d78
BLAKE2b-256 0e498849e586595284d718fb949b7822212b7a562352732dbccdc6f4f62c2315

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71625e569d66e4d414021a7072079c212495e04a76560d4cbb3ef091daaf2a5c
MD5 fcbed08b5e7a37416d1add7337c8e81e
BLAKE2b-256 3f6213214857869e44c385ea78e15ba514f8a2f7e1d84f33780a73300276e03f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c2c20885a8694a871e5c7e760a333d40c30f56b1adb62ee94839c042b22e0f1
MD5 b66d730e692dda59b35ca4c730c74657
BLAKE2b-256 29cb1050a03a2f864b39aaa58470fefd3dec967fcd36f2f3854a7c7fab0d4db9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db23db4548336c49bd05cca3ef57ea12ef264aab1bd2d6874530255d7af3002b
MD5 a7a71010e36059ce8d7d9fa7b6419d46
BLAKE2b-256 d13f70d0b9c860ff9d645db7676880e8605fdc7dcf4f3d5ff32b2db5c099875a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e207ab2287f2833297a962bb9d901882ddf7fb91fe58bd04dcb08f6a89d9c3f9
MD5 54973a84bfe0b3ab611fc617ab6776f4
BLAKE2b-256 2a1e828fb6fe68d2451fab8b085ed72b79c1dafb834bacbd4a652e5599c884db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72f40fb6fb22bbec25d6f1cf69f8b4fcba4cd73e2acd37874dd64a993df844bb
MD5 e9f472ba850d7f8446fdbc8aeda44d71
BLAKE2b-256 b245377051b5d9655a9959029cbd01946f3ceed9550b64f89be0c8c55d52d7eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0fdc733dba39a1a9863fbb0cc3c6578155eff9b1e38f220dbb7997326fb78170
MD5 7b7729148621c3e585ad7ab014e61065
BLAKE2b-256 ebc1b8b65f769e617ca8f6ea9099f451dd07b3d84042fbe7c2bf50ef9ddb557b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 131.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.6-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e8e93cc0cd2662da44064e2a1a831e22a69881237ee419569f66c26080680258
MD5 7cf0ff2fd08a4cf284179a776fa05b80
BLAKE2b-256 dcec08d2508da3fefc0aeefb1d7b924f59da42898d136dc9a67224218e782638

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 152.5 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.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f138772cc46d9aba78c39540b0b6a7d94ffd7796ab74be32691aaa5f5893857c
MD5 dd85506dba91c722119103ac640d7907
BLAKE2b-256 83f9ea2bacd75177236bb50dc93bdad839b5d9633933892f9f7c72ce1f84b60c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp314-cp314-win32.whl
  • Upload date:
  • Size: 123.7 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.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 59c628ed409b1e62cdf168bfb8f5e4e4835f8ab41295ad0d00f63c471d74d867
MD5 f0008900d9f5c648df6c5b40f42e3971
BLAKE2b-256 97e8f49544b86b5ae19ba8c6ae0de65b741605a5844d1c5901555e52be71a050

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e23e690586fb0d7a392878c2c6c6b1c4eb2efa29017810e83482e2041a2b5f7d
MD5 f32f920a1b3fc008d57a432b72615e48
BLAKE2b-256 1f47012bb622239e3b942ef18d214b3ee3abafb21deeabf80c1a7fe52c2a3ca4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 026df39bddb95d540b863c9b1589942b414f2ce97214120d984153d708dcd917
MD5 518e71d4bd2195e58cb91386a9798c36
BLAKE2b-256 0382ccb8b878f9050587c983ac68d1409aef7471387bba64d88a264c5f9da97f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 54a3ef3196074848265d3d088437c61eac68d9079f5b572081f4b975d40bd361
MD5 5dfe1bf7623d74e2cb790f40bf18aaf3
BLAKE2b-256 663a1a3c5e97590ca608ce10ca84cfabb275df1dea6d752fefcead5cabb506fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 989663e29721742f02f573c7b1981afab6e5a4e27d9dd475418b82155074cfa3
MD5 8162de6954e00935a504571e2f5cc6b2
BLAKE2b-256 b667132c6b755b5baae95c5a9ae74784c3acd08f29e8f070637acb4c9041bca1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 215e0e004f3c12074aa875080f68252fcd6f75b5cbccddf5b4a4f10bec3b35d2
MD5 ce8339c97c4354cfec5d6a006ae3a752
BLAKE2b-256 0a5f5dda4b45d9796d6f888469a4fc74dfd307c53cb2839189222fd588b3a997

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.6-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.6-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.6-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2a921460c4b1a2d7869b29b98de4228267a6c47e6cacc10bf312eaa9edf2e5e2
MD5 1c91c08de7cc9f141b9ae22543486bae
BLAKE2b-256 c16e57cb83e0d1962c114827f75d107ae4878d7d0e0d962322887cc461fdf23a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 128.4 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.6-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5619851ba046fdd28f054e346d6d8c0becd976a66c080f5c4c8950120fc3fed9
MD5 041f5be56ab724f733d5c8b05059aafc
BLAKE2b-256 5192baaa69bd3c6ba14de060666cb95025656dce45ce3e2028db127fce65878c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 148.6 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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a9c95dd25423197f689a97ba63161503a16cb5fc682911739d0370b22f33edf0
MD5 d8f017759b7a18d0702d99b9654a8d3d
BLAKE2b-256 234fe242acf394199bb1a832a4ee0b47f5315b4e7e8d186e2352e64c6c4f7069

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 121.2 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.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e457f8628a3a44451955c9ff6772c2674404fa611e5e68699828cf003096efa2
MD5 6b8a982934143fbfc2fa8fd42734efc0
BLAKE2b-256 fcfa342310dc573eb18ce14b0d7203b51f9a51b6517cbbb573cf1dc3eea36d65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 60857592b14ac4ca7635ce862a683bfd1b174a0d2ae98ca7ba0607a64d8ab4a8
MD5 d9155bd8de0d3ec0bd2253b6022439ce
BLAKE2b-256 094c2922a009dc9062723cbbdf93c0cac12d827502d4ac86e20eee72e39e8935

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df9181b70879882f48ab18892c36fbf1d1b5bd8199bcd0aaf99c6df1b0798d40
MD5 e22e3337495ecab5813b2ede8c92c24e
BLAKE2b-256 c384abd045bd26a45ef0121a1fe1c9820e3afd573ed801cc10ee927afdd81a91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb5e8222c3d5ec785aad999d0a69309593426b39794966f909385e60760eb3b6
MD5 3211711425f9853bfa08402abc31dc2a
BLAKE2b-256 741db1f72db71cf195db9fef48368ddf3f979ffcfb4e807aea991737ed82ec8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6ff3c3fd27f7af86b79d3ca618b2ceba76de9e05252d06f94cbe59c74f2c27e6
MD5 7ac2bb14770b238771d33fb2b2bca77e
BLAKE2b-256 31ab69a9e13292eb0babcfa4bcc5f53a869337d94415e3941d9644e7e2ee509f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08ad019408c36da2533ec54a487d417b8020cdd0b9a8e061bf5ec80071a09e49
MD5 6fc49f6d888d862af820f5ecb2ac85fa
BLAKE2b-256 89b17e9d6e1f5eae262a1f29eaa8acec463b8ae4b10dca47231f05b7d7b4d8e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7c73be46236065de665a47e292a87ae18f9152860c8fa5831f7f3e560597fc6f
MD5 1a9f8557407b124348b5191d68b43c6d
BLAKE2b-256 65e9335adb578145ab3d145d5c99ca13f5aadab8d9f7fc82d02e331cc3e7ff2b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 128.8 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.6-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0700ee26ddad5a658e584cb2128be2ceff10cda6fdf2f72e0beee229f47c4607
MD5 aee6a8884633f6c61b76cea626d3a008
BLAKE2b-256 6d6d360fe466cc5d2edf73df82a6105fda1bcdc29c8827b9acf7654c2b478690

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 148.7 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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dfd08942eaf31d3f89265fdfcddedf1e9b7cbf4d3ae8bad0e5df7b0a466a8890
MD5 9b57583ab6214a7cba4c10d617a9bceb
BLAKE2b-256 794ce4143143f0eda4ef19d37a83ba946f2f1ca72966c4e3b7a55432ce18ef6d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 121.4 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.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4d4dec1ee0456742ad1b2d97a969df833588cd9539654697a19237bda4931c7e
MD5 93cd3849435db5275330316333a65a6d
BLAKE2b-256 e52e548b0f89c1a9d07d97d16a7a43c56a3643bdc867b9d4725991350991bd0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84c2e2ede15dc55cc76a120847f44dfc6c2ed6387501ac7a79077b625673b435
MD5 08efff3f8872b51e04de5e8460798d83
BLAKE2b-256 e10f1367773b22d51ceb9986ee070fd18ba2ff070049658be9501f3019b63ee9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc7dd29ed5e6ef998f4127a7628a1c38814ec632d0ec5635750537797b552875
MD5 fe2032f1a66ad158fe910f5363ecb6ec
BLAKE2b-256 1c198f50df34d4bd75448d3d7d037cf42aba6e6821daa90d296ff9845d58f304

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 472689529ad685a9a84ac1a3f9abbf2b0bd59f1b490beae792ede9f512e7b5ad
MD5 03981f9988a62692d8248a67b475fb18
BLAKE2b-256 bd9ca0364f78e022bf7bc1506a337b6566a9c18ede79897436cfb4d5a523d4f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 053aadb83839ccb88f3bb7aef3636d5785e9ec78aeb2f6091bfad1c7cedeeda5
MD5 8c2c5c3c78411d5bd5884b545addebd2
BLAKE2b-256 7a25aa9466b9c4ffdbc9d914d06a87b4ff54bceb0d08ae81b38bc229055eb909

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47accca05a113228728dd3eeb81b7f9b4e01a8845b86f3dcfd660065553bf6d0
MD5 0b9ecd98afa7dfd8993c2a4c298a4588
BLAKE2b-256 8a71d4dd56dab9b4898834abf4f203a90aac8535bc3d0f198298b5240d4efe9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4ebe021a59799affe626d7f8192d82376354ed9d94cf6b146df133eb47a0f5d0
MD5 eb1555ca9124f8afcf91ec112f0b32d7
BLAKE2b-256 961db294ece407b6e422c73738b144ac4c9e2561a4fc849b46753aea1206dad6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 128.7 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.6-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 735592bd829fbfeb35d0b44c3a55095e504035b6eb182c1ed382cb12e82c7eac
MD5 b7ed66f3b4e5fdc88d736d822f90718f
BLAKE2b-256 f01188e6fc0f21d5ccf4356f8d84a721ace8991b42b4e5224e27693fd6f8742b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 149.3 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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6d419d2ffbad12723aa8222171558318f121dd5b93fc1c0ac2d6b8bb5116af29
MD5 e1942f8446ff983d24b56b6361770815
BLAKE2b-256 7036c4e3c05c8c0a82f35c518a9605cabf13b8b559dea2efa4b2dbb9b9c68565

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 121.5 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.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cca68d75a3b3cd350d8c9c809dffa7edb2868be26f2785137e757e413401f054
MD5 ff7acc149f077ff8be673e59ad538ac9
BLAKE2b-256 b2c467a41cac7bf52ad3c2f6d3f5e84764957740725b5fd315dbdade1109a962

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8e7769121108c11823a12973baa3dac6c0929394aa1ba8aa78cc6aa71abf6f3
MD5 e4a07fb4cce195e22d299e1794a9f189
BLAKE2b-256 8bf7ba3c72a13839004fe0949034dcb3678a30ca8af2aa63c14496e241c6925e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c6e8159b0c32ef9f8959d5bfaf3f6c071317a6a00f0da8ce614f3cc96b2b0f5
MD5 4199a1b084c2198edc0e138ebf51314f
BLAKE2b-256 22d85f699faafd10c146ee24780e070dc1ddc7a0793357a2761916f8e09f1bdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f64cc827548adb7b931d01b2b20eff893dc2415af3f67f589c30fac348ef25fa
MD5 fe292fd98d6af906232d7f0bb327c643
BLAKE2b-256 da641f53bb3459dcb38ed6b285c102612577853e8f87e074bed67982556abd26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c8c2659c71c9a72775456b1b56a265ad3c37563078c8e75b106fe7f207e89de
MD5 d8b624cce7fb4b5ae7fec72d602686f5
BLAKE2b-256 7650f89bf9d59e0b015d779988f3e1d99c440515d57d209b6e13cc1b69d78a37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dde017ce970c0b2ece8837bd03849c3f5d4aebd5fc42c895c9f82faf88ff12d2
MD5 7fa0d9592250b81f1847cab088178388
BLAKE2b-256 fcde2a14940f9ffbe433e0707b9efec4e4d285cd9948058d7db0da2c9dc0c6de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c485abdad588ca9bd6e32e540e72416b9b3d68de5c1366c5dc44e89372c1641c
MD5 adc4ee97cdc782a043771ebec446f6a4
BLAKE2b-256 a796eb48ccc19aa3cd88f80c8f43be056d8087b0477deda6e88f949f6fcad84e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 128.8 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.6-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 5837eb211d6fa5a26163f69c08b53de9093ec748af1ba952c0539a5d0629fa00
MD5 ed5b5884ccff7e9e6a21aad167efe6cf
BLAKE2b-256 aed334d4ce5a6b54763d5ae280f18f259b2a1d3c7cacfa6b767e972344d77a63

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 149.3 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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b08ddac3192bbee1649774f69044cc1ec0fdf8525ec9cb621ea3fe96310dbc8b
MD5 659c593d035f74ba635c0e92dbfbf941
BLAKE2b-256 801fd20403ec348d58dca0bc27c8cedc75308b00ba6acde4a1914bbc983b68b7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 121.4 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.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a513a744bee64b7ea8a0f0a8911becda01f2fddeb08466f21bc58c8a41c38aa1
MD5 0e0adc11f40388f45e5588f93c68e44d
BLAKE2b-256 71509af10a1614bc62ddb59e39ac6f17e3b9e405d12e7bf78129be1911268377

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10b26db8b6f60ac71e7abec6768c4e9cd757b68f3109e1d2b1940749827a0cce
MD5 85440e33d31fc17abb304730b141fcbd
BLAKE2b-256 03cd37f3efca1807a8f854229e8dfe7cc37b1ea1824364a8d5ca930a5b4ddf5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31d2c381cdade118a53a5a69c2512e2ccc3ac88c412fdd20419f59cf2ce9794e
MD5 84bd8aa619056c5e692c479c97a0265e
BLAKE2b-256 219945529cc96d914e2b8b00edde170930c621f2d9537253389ebb92d93aedb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9f703feb1467d7bf1e1fb5ace96c8af5849e4d2b6a758cc39702754a44259fc1
MD5 8a6140addf8bef6fcc94c06af2d611de
BLAKE2b-256 b32d751712a93a48f744f534a8cf1d4a3ef8b5be4b8b169437b63df9530278df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0fb88f27e5fede5c27d8eaff28f4e67b1855370d411fceb1ab763d5c685e753a
MD5 56d955abbcad04edbd5d505ea1c43dd4
BLAKE2b-256 3a88fa1541c61cd0e0df7b36865ba1a8adc6cc4800f00e02f7b44dc0696a2305

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 091036e1b5fbcb38d1aad53d2659509dccbba9477b0efd43ae8da9f870fbc59b
MD5 0578e8aea59577bce84233701851ad85
BLAKE2b-256 44a69af83f39b406ad07ac473dccb3bfd8a423f1e71844d7a07274b4abbab723

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f130237b85a6cdb281609e1d7330cff5c8722f46029944643700b2bfab52e13e
MD5 496da850e4c149801f25c816122698a1
BLAKE2b-256 21237d1efb5ad5647c7e8ae35b9da2e6f5a6fbbb69ec8bd7e67f3666a0611da9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 128.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.6-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 9d713119dfbb854e9b8ae45e5d56dbb944a0edd130f5d401e4b935bdc9cb3b6e
MD5 5e07e77e74c823a1138a9c85be9aa84a
BLAKE2b-256 075328c6eecae730448d772db8501928ff4528f5a94a251396d16e6460a47c56

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 149.3 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.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 181711a4b4f85392b386c8b6fa0bda25a63b8c8444cc6485f4f6c215fc217a1f
MD5 a07acdf7c9ee84d86e7bf6a8adad64fe
BLAKE2b-256 b633819cc6628eb6c82bf158cb5600b71a120b4b8e3f3ea71dafc6b136c51e7a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 121.5 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.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 29fc11e2057612d3fdf5a3c3aabf2cb58e858995209d90afd19a36d1c6f7d2dc
MD5 5252daf8c4bcd370d2f05583a1ed8b07
BLAKE2b-256 c8a5eae6a60f7917acb0ed7bb838beb71ca655f288bad685ce5f615d6d8450f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17ddf2385b41a2d93d83091d98b8867729e442e25b57f2835932c808982b9452
MD5 149dbd31ecc31cb03953a8195094799a
BLAKE2b-256 439f0aacad13e0fd5fa4e0bbe213b0dbcd4ebaa5b7d8b9067af2329fb03f5c55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44d7c58dda9d23ebaab59b84819fc750f0c0e8b6977e6fcec8b83e11f3dcdc36
MD5 d58500fdf6bc11a8b2a532c20129ba0a
BLAKE2b-256 fcdcaa6b785f3ddc3bcc2318c37811163b058fcecd5cf2423ce2f48c3819a679

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 42b5f2daa7d7684036c0169bf28ca5cedb405a45b6cd686ea5e78898cbcf889a
MD5 cf8482648458f027ce91ddc656a781cf
BLAKE2b-256 3d3e3d758038493ba492421820fa3bc4230868b931fd3c39040d7c43974a826f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 93705f9a9755cda2d3ba352eebbba61688c8dc9e82c691cbef4eb7be9236db43
MD5 003af71ab94a51774754d34a907d8867
BLAKE2b-256 b6fe103d08d23de84eba91b3b4c640634ec54a573eb2bb4d300cf58bb7cee0fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3dec130bd3986ffd49e783d9f75f43dc1330a455667feaa3baccdb7a84d5164
MD5 2c92d53e0d5f46cb93c25260efda758c
BLAKE2b-256 c9b57a80ab1cec0f7d00d0657a23773fdb622108e9dd1b0fdedfd3882b0a60a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 344e83c601b5ab496b451d2fe81eda9b12f1a7b69f3b3de79f564bf61b88dbd0
MD5 0b91b69dc2be10f0fbd2c933e4beb756
BLAKE2b-256 9c2b808bb31f7280a170d120493df189d7aa7463cbb17e3f97370d971b83ad1c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 149.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.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 36e1d80e02c633f4f754d0ab1786d600328e4907f7f39b28b8813ab88eccc678
MD5 a14685ee8ad975558fd727e01cd7ac8a
BLAKE2b-256 e94f1ef0d8498fb352dc29f98fdac8bcfb2d76d28004f690090d9df05ca28881

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 121.3 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.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ad24a17fb52a98e283b78c4114206527149d5153fb230c7a1051a6b1d1393ffe
MD5 daef17d9e72e724b7a464e431e1fe291
BLAKE2b-256 9ca426baf59e01877c83e637d5b298d96adf60bd89d1f25bbe9846f46c2e463f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88b0bab9e7307dc9d332a558c07d6fb691eceb7ee985ac95e2d037baacc54baa
MD5 dbfa20efb7172dec14135b032b74d278
BLAKE2b-256 b6fa96f4229fcd902ca41be4fcb7e7cd9de507fd2769f322fe5739023c8c2718

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0aa195992f833926003fb80e2b0841f5e7270a9c9819a40eb7eda8bd7db44203
MD5 4dd9e44c2cb2c9e07585ba158ecd0352
BLAKE2b-256 b2019405b0f628d7847283db6af3e48166a3eec18aaf585759902d2231181ba7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1faea4f9084a5392f6474dba57e2b7d62091c69af046d9c39b2d5984dc18fe19
MD5 f92adef002fe6eddd6f5fb276be64132
BLAKE2b-256 896659e8a9d7b755ff26d582c4702e7f46db6f34ec0c23c29951c5f497f4376e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 194abc8a67793b5c1418aef59e8b25b4853e19366f372f7a2fa3718275867cfb
MD5 92471d3d2a423d23888058ec7316cb13
BLAKE2b-256 fe82577415fc477304deeca840e12df70d507df1c0e6b521ab6d9a6a5986f4fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b24989f4c5b0552794fc989163c6f1b11609b07338d8f0610e9b59164ad4e49
MD5 f637ff195ac3e62b94b198c222afa496
BLAKE2b-256 d7d380dd9769506b4303fb0c6e15237acbd8d4fb97e205b157836e6f1d48b0ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f7ab75a18ae07df2b9e690051048f8d3199dc2e4defad2d523559f63b44458f
MD5 c3e6cfc584aef8ab811574bfcd64750b
BLAKE2b-256 7fa11da469bd52968cbef9044f3feb1970ce97ca76c1ceb4a61f2a6c186777cd

See more details on using hashes here.

Provenance

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