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.1.tar.gz (347.0 kB view details)

Uploaded Source

Built Distributions

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

miniexact-1.6.1-cp314-cp314t-win_arm64.whl (135.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

miniexact-1.6.1-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.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.1 kB view details)

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

miniexact-1.6.1-cp314-cp314t-macosx_11_0_arm64.whl (130.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

miniexact-1.6.1-cp314-cp314t-macosx_10_15_x86_64.whl (150.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

miniexact-1.6.1-cp314-cp314-win_amd64.whl (152.6 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

miniexact-1.6.1-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.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.8 kB view details)

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

miniexact-1.6.1-cp314-cp314-macosx_11_0_arm64.whl (128.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

miniexact-1.6.1-cp314-cp314-macosx_10_15_x86_64.whl (147.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

miniexact-1.6.1-cp313-cp313-win_arm64.whl (128.5 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

miniexact-1.6.1-cp313-cp313-win32.whl (121.3 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

miniexact-1.6.1-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.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.7 kB view details)

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

miniexact-1.6.1-cp313-cp313-macosx_11_0_arm64.whl (128.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

miniexact-1.6.1-cp313-cp313-macosx_10_13_x86_64.whl (146.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

miniexact-1.6.1-cp312-cp312-win_arm64.whl (128.9 kB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

miniexact-1.6.1-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.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.8 kB view details)

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

miniexact-1.6.1-cp312-cp312-macosx_11_0_arm64.whl (128.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

miniexact-1.6.1-cp312-cp312-macosx_10_13_x86_64.whl (147.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

miniexact-1.6.1-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.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.6 kB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

miniexact-1.6.1-cp311-cp311-macosx_10_9_x86_64.whl (146.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

miniexact-1.6.1-cp310-cp310-win32.whl (121.5 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

miniexact-1.6.1-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.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.6 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

miniexact-1.6.1-cp310-cp310-macosx_10_9_x86_64.whl (146.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

miniexact-1.6.1-cp39-cp39-win_arm64.whl (129.0 kB view details)

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

miniexact-1.6.1-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.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (149.6 kB view details)

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

miniexact-1.6.1-cp39-cp39-macosx_10_9_x86_64.whl (146.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

miniexact-1.6.1-cp38-cp38-win32.whl (121.4 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

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

miniexact-1.6.1-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.1-cp38-cp38-macosx_11_0_arm64.whl (128.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

miniexact-1.6.1-cp38-cp38-macosx_10_9_x86_64.whl (146.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: miniexact-1.6.1.tar.gz
  • Upload date:
  • Size: 347.0 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.1.tar.gz
Algorithm Hash digest
SHA256 966a4f305e0904a46b707412a074fa3d4fbf24ac5337820f67dde7df0cbdf17b
MD5 1d6756b0c1649b0f38d7d61c3fa78e7b
BLAKE2b-256 046bd80551a77fa30984c4d7791c44616171cbd6c831be64be74bbed273757d6

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

  • Download URL: miniexact-1.6.1-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.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 40befa91f8d121e3d385db8b3e2da729865166d1c455c3575728419d2d8d47c6
MD5 f2c54a40edb4417381d575c03a1b3456
BLAKE2b-256 caefafe9809ffc1d073a3ddf978f96c6f5545bf84424786320186324a5fd17fa

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

  • Download URL: miniexact-1.6.1-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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 14f6827605de6e35879af54a9524dae9c6e24700a367543896070639b8274128
MD5 f12eacfc7f42f9a44c95c55a179329ab
BLAKE2b-256 af4f684ec533df2c5dde71fa5c25a7c1a58f55989ef61af5dcf9bcf0b0cf8cad

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

  • Download URL: miniexact-1.6.1-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.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 14116418083c2302d5d1c221c4aae27e8eb446d899906781eda0b34e70f3b077
MD5 a601e41430e5843e763b9b0d3c904193
BLAKE2b-256 1ab1b2b18181b980237af2b85af656248f2986a4ea772cd4bcc6bb42e760251a

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 902c539ff82f718ce8e09a4b7299c9e34e5c74caa68d2a56b87181e64a0f7806
MD5 fa8e47cdd7cc5cddf06dfd6186213a91
BLAKE2b-256 d436e42109cfbd78a85467210079e449956b589ead7ca42a641f023ba174ebcc

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01a1eb32411ea2ed46a64d80b40ac6d2812a237713e5f01dc51d3d649ffe390c
MD5 2947eef740784c15dc03dc2756b58e3f
BLAKE2b-256 92a393c4f33cad320f137b942851834d33229e208a92df9db485d97e2a0c1cc4

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1986388d80a461d45166f4bbc7aa4842fe2c2e232ac8b8aed71ca40459a25c46
MD5 9d61131d4b92ed085e7ad257b91739e4
BLAKE2b-256 0252f247ce75261066cf8cab7b8b68f2eb67693e1dc5cc373b52e5c9c3a6ba34

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf0ddcc0b48daf3e5343f6322c87bd0cab89e394a84f5488c133f59026723be1
MD5 93a4cb5b318315b11326790da47d0caf
BLAKE2b-256 33241645962886adec6803251786cdb2794de1fa74aa77e8f697354e14ac1566

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a337d9ca5ce85b619d28fa5c43c7e7c0d1947a2663c986c873d2800b4a3a8066
MD5 ae61264bfd467c7e94e76b03a5405f12
BLAKE2b-256 dca9a6f50944156366c2e73a606625df9f94a9019576c0657e134783d4a11632

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.6.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.6.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 209b081a54484abca2b0809bfac55ebae4ad37f27e6e461af8b4a032e09d158e
MD5 1e41a80aa9cbf934da78f84b42cd123f
BLAKE2b-256 708e1cb265d1de37b3cd9b4a18a485ba9cf340c83b019070b6d739885853aadc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6.1-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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c30ef4721057996adf857faa3f456f60c28b6a4f3448884c48427446e4a3b348
MD5 b506c3a9d49eeedc86bb9401ea8f81ef
BLAKE2b-256 4e5cb34d9d874be56cef884d51d8d19c5e2c94a66150c325195a9706a572a668

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

  • Download URL: miniexact-1.6.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 152.6 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 71fc3a748e019c690e4c880acc8a49d2c4890375040b9daaa5b808104c7432df
MD5 2d49f82f713b93acb573806a60693ebc
BLAKE2b-256 bbfb0dcd91fc08697ee6019a2ca2c37f1367a1da14a4d929bed3adc033fcee80

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

  • Download URL: miniexact-1.6.1-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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 823f17e44ce0e586e8a6f96974b59e8d07d0543852378222765bafc9e23c0b92
MD5 88e0986227c79235b964e64fc709adaa
BLAKE2b-256 467ec2d7ee32ae7c8225e716a329b0a8ee2f162b22f1acc14e73d4afb865b216

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf8d1543cf6f7724a15f11d75b7dc6637b1e8b7438916e6a405752e3af441610
MD5 fd29c75553bcc3adac8da55c249e91b1
BLAKE2b-256 23112d0a57f842b52bb6ba8296c46ccb0858dc1cc860f5bc0b24d8e649972a16

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09ad965455c45a9b2205cc69e1a5d86d456326eafa02a0d2856d8249d2830a71
MD5 75090fafba4bd7c77c8ea7ee7859ab1e
BLAKE2b-256 f044fa669f1be15f843661f155e690810cae7167494141554bbbb7dd946ad2a0

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9382a5ed11bfa8031e53bc4f9c943f3f4b93c44477771c4337e9341193ac68cd
MD5 e2b85a2374943e26ef26326a5d260201
BLAKE2b-256 3bcb63b1b42df168a788112bffd967b18f972013adc45fc3011dfb5ffd4be642

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e172868c135c3be58651bafc81ac84860dac27875ce57d72e22134c590f8471c
MD5 f76135a614dc0b60351f794406731a6e
BLAKE2b-256 1383412abcf183c1bbc54aae88185ae4cbca7bb28c70597edef9e4e53043338f

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77b6ebedb04186b457bb8617cbeebd4c30048196588201b684f82d7714592340
MD5 2409a03ec025b1bb844aa325d285ee34
BLAKE2b-256 16a4e4381225c9a96c951661b27a3e940f3b88fe366f39a06445031845af706d

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.6.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for miniexact-1.6.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 22e91841d1900fb678241705bb2ba7934fc2a02cef385977efd73833650d87c2
MD5 339c115d3e8b375de0facbfee38a10c3
BLAKE2b-256 60894ddcdcca9aa0998e2df7cb8737d980ccf7ad7d058bd1a848d1147871a910

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: miniexact-1.6.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 128.5 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.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 75d3c6bb7e71576a526323a38a893d958de507db75653cfd06a36f577d0e9e64
MD5 110277c3b7aed920c6ec1d84acbf78f4
BLAKE2b-256 790c48c69b90b3486bfe43a6d0846aba39825702372682a4228f831744fe523f

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

  • Download URL: miniexact-1.6.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9b5417cdd541b673e4c516fc8b670fa32d151d0a0c84f957fb156f41f61a245b
MD5 fb1670e3469ba37042faff0f1ad648a0
BLAKE2b-256 96f12ced03f3f353312b7d87d3ef7728fff78c4f54d2c2f34effe54389a15177

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

  • Download URL: miniexact-1.6.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 121.3 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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c8b45548b43ad275a9e1d8ecf217efb7bccb53d0c9a9e57b2c9944282545800a
MD5 1f639238aa1e492cf25cfcf7c5c02e0c
BLAKE2b-256 20cfce208819de80d7cc4c25089014992333810dbd2af4611fd260562104b194

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67258e68ed5ca59a5604a4b00750f35642512cf7acfe8e7f3baf709d4ba9e12e
MD5 754b88e3d9851aaf33222b3f68849a16
BLAKE2b-256 2e46ae16da77f603fe702fbd8a633e3de2720bef9b6bb366ebabc44b0492853a

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24f6db24db85138f44ce5255bc634ed904c6fd9baad25b445bad3c2d9f2a458d
MD5 5f8ecfc5f0f4ab6919d4ff98df157ce9
BLAKE2b-256 66823c600e1392a70935f834848b6f7c51ece8c0f10e2aaf00b34466ab0ea63f

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee71e3bacbd731c98aadb2d296c561174c49c26559b5fcc735c3d590865948e4
MD5 a3fd925e5cc45c8f93f4fbd5017c2c02
BLAKE2b-256 a15e8fe8742c8089171075eea8fe074e10479e624da9db8ed91ee453c089290c

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 427f40578133576948f1103a076cba36a4cdebfeb13353de38b047a1fd959d1c
MD5 5fde638bcf1498d7a0a5d07d3b0ff0bd
BLAKE2b-256 dd684c14ecc8b96b265952c756c01257fb82cae0caa53e35a1457e7dc5c01e13

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d21765f2993c6889b280439ed79ebb868fd115eec732bcf6c7ad45026db3c5f3
MD5 27f5c908cf3fba260929985d1c2e7d3b
BLAKE2b-256 e654f8d87e7db997df51087d97c07e1cc01032b06c8612ac9e42cfabd92ae3e1

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5b31d1656df3306dd7b049bc514c2073b7933004e08377ab06f9379ccb2328ce
MD5 bc98730133ed028194d5ff256cf18cc7
BLAKE2b-256 c1856a5bc13a3ad0c39d34f77460c5a2d9a70188e2b01ad00491ab03817161b6

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

  • Download URL: miniexact-1.6.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 128.9 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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 651274ac4b583ec7a18c0faa3fd10ea9c8069b6cc66b1c093ab1a37f067deb29
MD5 7f53e291fa15273fdf73ff09d5aa2091
BLAKE2b-256 d24866552abe432197e01ed95c9c366500d530e5b63cf30d992199555a53304e

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

  • Download URL: miniexact-1.6.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 db3b4b602df3d7abaabe0e85a785d570fa45a8bcdb078731b0f0b0f67d851bae
MD5 6f51eb2c83a1028df23b13874bdd5e44
BLAKE2b-256 24084b8474cf36e10504192f927659531f09c414acc1e83eab185bd4cf1391b9

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

  • Download URL: miniexact-1.6.1-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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 041174f8a5ccef3c064be763780629be0dd7bd9902079c8e1b6552a4ff335e04
MD5 f33bdc8fe7cebccf49cb064499ce25f9
BLAKE2b-256 9fc2fff9952f93edcf717c22cc6111824978c338b11859ffb784a7139fe81148

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16ecf55c2e244d4fff017f5e2878ea0dbea632928cb7bdfe49ce73ddb8a89ce2
MD5 2ec881a213e729daaa8c8abd589ff0a9
BLAKE2b-256 b536251e2f74c9703eb95255aed54d33d746fd5f208cdc954ac3f14858aa4fe4

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f4e7c1f795f42c8243a5f528063ba232b49bc4bf5a86efb5f20309b0af5405e2
MD5 d06874a2f1c61ce939a0fa13ceac6d1f
BLAKE2b-256 2cf6e44bbe2ea49111dfbfcbc080227b73702c3e34db9299686765108c2906ab

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 56357bb3a371af2cfd340fdb0af2767f3f738a42c8fc3edd5acdc26bf3319f29
MD5 5b923000aa9dbd1dc4e4e83da1bfe8bf
BLAKE2b-256 9f2404b6e2a5bef3b49bd6dfbe68b1f5bec440e3713970e09b91fdb130377cbd

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bb02b7588e8195c64678801787f769f18e82c69d68995d502803336097069624
MD5 fd5062657b0b2ff3b09e216b324f6a1f
BLAKE2b-256 3cd66c033d72722587d03cfd6250ea292266025e9248d0022bf41dfb96445bae

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49901704bbde5cf5b11c25ec55af0769a94446dd6cb46d2553449dd8d4226df2
MD5 4778aa4d174b37998f32bd4cd9bde344
BLAKE2b-256 41139222a3b1be8b2a68bd887f373bf353e19bf3f21fdc362c2a3a980f55da6a

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dd3f567b46b7b5553b78e83d9e38179c2e97fcb58b871ba5ca3128c343cbd36b
MD5 f5e48c82d0a7ecf598dc66a9ae9b173e
BLAKE2b-256 06c2117c4d0df5d4de96da8ad80eaa05d098d404c3f513601c4af65ef30e7396

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

  • Download URL: miniexact-1.6.1-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.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 49aca9e5e5a3d6bebe84211bdc3c881b60b0ef183a5b41845fffb8231c3e7a40
MD5 83c0e353565065d547ecad98fffbfcf9
BLAKE2b-256 80e752fd748044da16b9c268492149b679522e094e7864709f1956cb3e447d34

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

  • Download URL: miniexact-1.6.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e54c704ad6337e52f0af244b6854dfdfa347f7f37506a869ab18ed9be08e91b0
MD5 3260bf4f6242a97b6985512dcf5bd010
BLAKE2b-256 bd7a2ff89040831afe1e7ef1bb8f77e51b5ac8ef0f7778b1024ba846f9fc0a11

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

  • Download URL: miniexact-1.6.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e515c723a4e046997b6106acee69e6590b056cbb15fddfd323b3d7e6741c8915
MD5 ec85a8ba5c87482cc8bfa3de8a66fcb9
BLAKE2b-256 ac4ec774b5ee96940a55cb21ae90795ff58040b9d1564df42665846d94cc63f2

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 773478477ef232285db9b0b6782c4d52cf82233e67e54289f2fb9cefa801f5a2
MD5 7ad78ee0a557ccc21cfa6167dea1a6ca
BLAKE2b-256 74695940f874da80f4cd5e8e68610acb27125435d7e4f824ec6bf4043735575e

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d0b48d61f94b64bcbd4dc4a0f2b14129327e58c7f1875377de724d44c00cadfa
MD5 0c1c4d56a362e4e1e1c2e853909291ce
BLAKE2b-256 2deef6d3ecac895fe363970cdf2fa55cd2490a9ec2ec713f5edd1eeb853830f3

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68ae2eb27d3395f0081a971ed66b26aec10339a62637f3a81613293c7678b0b7
MD5 841757c958bba0de3c673a88e0f6329d
BLAKE2b-256 bad5f7b5a8b33e167e32ab227bc41f83964fd43edb23b23dccbfe54be9b13f8a

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4137d9bee38e894fe63590a107e8d9c6693548ec6a0ed05d8fa68372a09c47e6
MD5 442150dc1450c6f0aacc0879760b1408
BLAKE2b-256 90b42be48007d9406743841d882fe55364a832f4bdd59c73fe937acb74062989

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a4f61c04eb6170c0e20877f39876c90dbbb30d311bf1650ec6a1fe3d69fab74
MD5 5cf1323a12f3855eeda80595c4b9c467
BLAKE2b-256 19f206ba20cf740d8c016448b8689bdc0d7724ca9f8d29bfd929372e825410a5

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e61e83fc2e29af8f69270e26fa1b8d4ac533ac20248f30d0bfe2f9a48db8ddaa
MD5 4d9c215fa67e074ec8580ae71e714414
BLAKE2b-256 7bd792ddb4259ef1a73e573ceb24e204a6f98eda747ada91dde57bba86a0c833

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

  • Download URL: miniexact-1.6.1-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.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 6e11c279ca00f43cac6e10cffa78cd4a08c93c9ff96bfd9b091392b942e299ee
MD5 543845eced8484ef324f3aec0128d8ab
BLAKE2b-256 a398ba3de72bd2155c60a0ad76707fea920ab4a28f95f7f3f21691a74fe99976

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

  • Download URL: miniexact-1.6.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 07279ee0df9e60a9664a5cdaad54dd5296aa5f247478aa293d677c984016e641
MD5 9a23a06f3a62149f70052e7470472ab3
BLAKE2b-256 415253b87331a2e544ab95fa4d03d165490f43fcb4f43c02603b422d2dbc0f5e

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

  • Download URL: miniexact-1.6.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 121.5 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f94739e11e5d1f8588bad66ed6347713f73a8abcd05835290252e2e06fc537d7
MD5 aa8a7a54cbdfd8f823db62cbf3ce747d
BLAKE2b-256 bea83290a50e768c065368f0591d721da6503f83e1ba47c28726ddd9afdbde0c

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3316c178c95730a2ed2b8e672e532397899196b2c1bcb9fd1ab50249d7508730
MD5 4c4f651d920340b875a4898bf0d7b412
BLAKE2b-256 c5841abf95f36334f98c5f9a557926dace4e23fb5ee24c4387dfc22553a407ab

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cabb70f47617ca97df9e36e4f9ff74e8a98ad81e3e127722330d2d136fd42bb1
MD5 8013cf29a0422613c0deff120696d7cd
BLAKE2b-256 2bb30caef011f8ce9c5200f8dcf0899421055e738d1e7cf1e079b879d65d36e4

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e6fed70d1f99639b17282032ccef48a8eb8af59a79f1636fdc804e80d45eb2c
MD5 5058b94efbeb1e8ba20330d7d8aad84b
BLAKE2b-256 29163d1d18509dd73e9c46f2817f16fc3f8e8ee79aab2664104e9059859f8dd3

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fa10d08a7b52e99256b0c305b94be1e11893009cd36bf6f6b8caa69cbe37d884
MD5 9ba90cf2e4af746cbba927f005f97061
BLAKE2b-256 36535991925fa53b5e6fe5482750e12e915121a6a5dd23c7858ee8cb8cc95956

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fec6c0a0cf79931beafe77477bb565d29eb4de1e6f84230ab4e6bae28014dd2
MD5 4b7d1b8acce62abff62320e3dc71fdd6
BLAKE2b-256 e0314e62ddb9ad6a04a7393e3fa24023fa352a94be26fca5df54291be749ec6d

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 642b10371e5ea70df8a7f6aabcf6fc4725a9f644090310cc322c635218cfb4a0
MD5 997194ab773ba01e7ea04d63ee828ae5
BLAKE2b-256 ae7b974d8a05e9f5726dc3c621e9bb6e2c21f9f207e47b7fbef4fd7259e5d8b1

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

  • Download URL: miniexact-1.6.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 129.0 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.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 de47dacb8713a4943eaa347a435bfd42ccf52a1ca68eedd855607a3f5b8c421c
MD5 936ab305bd5844bdda0a33d0fa10abe6
BLAKE2b-256 ddff8764c86e784be7496b476ef080d96e1bc15a06980983d208bc93602fcec2

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

  • Download URL: miniexact-1.6.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 86dfcd6a57bba99f20b22f64b3ed391a87bdb1cb8f9c36bb16e72b0858df080a
MD5 a35b1d40a2f32e1c0fd4c158f4990dcd
BLAKE2b-256 15434959c1c0e0e0948510410ff3b5e00372b051aad59b49f3514d807d6e3095

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

  • Download URL: miniexact-1.6.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f93227a8cd391f795905d16a02303354d380fa9c7412e33ed19d723d79f191ab
MD5 1bac05e9f924403e2097e87ae58f49a4
BLAKE2b-256 ae0fab3e90942ba6e778c50f114a7b51012a7c7ece09617d3eacaeab2d8c5112

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d39b710f367bf0252191cc039c1c9e5800b804cb9b7a4cef4e772f32bb328d4
MD5 7bf935ee6c6ecda7fd3e5c4dc3019e1b
BLAKE2b-256 873cd72a00bb96f80f08a78619ddcedc6bb8e1e0514618e6dd25d04f7c69872e

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e892e2625b9fb88dfb7943e2c04750dbc5c9936a7b84ad4fafdc6ecce1fee57
MD5 38533e5b676bc8c256e04fc391187ae8
BLAKE2b-256 275bd76198da7bc397f2fa65831d9a7461eb46cf66911076516e8b87f69df3e3

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50a02564160a9d6aca22d28d94558ac92918a68730c000aed7843aa4a3c79c2b
MD5 30eadde38642509f6c91c84fc5ba13f8
BLAKE2b-256 5bbea9d48cc40dd8ba7ef90ec9ca43a57cb19476f72eb782874d56e45b91c7ea

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8bfdbc647af817c5e09dc7a606a26e2ea99567fa554c63662a43bf79efb75e0
MD5 be93ba034a2f5026076635cff77faf9f
BLAKE2b-256 fd874afb2893589d4b0198ff8e778b1c58ca93b0fa204705581ec0ae7fb465b2

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34ff98dc5c8d0129239bb8c9134b5caf32c631089cf2e1c5d42e0e151a66a3d5
MD5 abe77b55c733810a442dc5c01b376e09
BLAKE2b-256 456b408e95069b5f95fa8d918a5b75d3432a58bf1838c6b6366882a3dd6e530f

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1bc39f91c649fbad18b36ecd4408b989ccf8a4f302e0790fb714246d1b53f34d
MD5 ab77ae485049b53d12d511e9b57707ea
BLAKE2b-256 e234baa82fffd9af1f3d2f57fef3e4238c6214ccdf8f922d4d2c917801d2c738

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

  • Download URL: miniexact-1.6.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 df71301cf085d45e7b652c1acd6c34752eb80717655ba0dc87a5557eb6c74e1f
MD5 cd010d97d1e042667c8c035558b4858f
BLAKE2b-256 c16e6975c38a47617899d16b812ff681291e7bca26360ec01d71bee6f6ad9c21

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

  • Download URL: miniexact-1.6.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 121.4 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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c1b135a87621d92d2b7327ed6c979f17f74266477e5d632b827a0bc66b6c81ea
MD5 b3c59ec182fa4ae845817281314dca64
BLAKE2b-256 641a94f1e214d4ee993e5d509d90715ec26051ae104fca1d3469021a845dd1ad

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 621b24137b33cff21d32257e6d741ebb25bdd09cee40366be42b3e7ddc2dfd2a
MD5 5fa8e539f10dcb12d1449d6500cbfa4a
BLAKE2b-256 981d854e951807a7669375157ee35d05397bab225763947fd95e7d3bb5132081

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3e65edc236db4fc85e16d6b4dfa4ccb2737a732a865ff0eba6452b4cbe20fc7
MD5 94e13e757461038a52e812e9d201020e
BLAKE2b-256 6c5af5580175b134c99cdb49699d51ee9d28500c1ae521682fb654beba67d455

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f13f96e7ebd610d33995c2f2577bb706511db555378a420248c4b7a04e092420
MD5 e7f04faf50ea9c076fe5adc5b04d54d4
BLAKE2b-256 351c94240356ae18fc6b2626d41135b100a4a20b0fe8ccd3549e9d12e4eb4fae

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 84f8fdad888de78253666ab27fddea9cd7c4fe1843408aa3e7362f802491aa44
MD5 c8536213799da3c431fa1afd7c22b13d
BLAKE2b-256 ebf9d4736311fb13e28a0467ccd085af054d4654868cb5490497f29f039c30c6

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb41a42fe58d8f56f49a881889d52e8ee9e728cfb90e4dd078942585fa423f97
MD5 c27bcb64460d5a325c85ff77093aeb29
BLAKE2b-256 136c569214341c5196e2c3c4a5325ced34482e24a97b679b3f5160ba180378bd

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

File details

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

File metadata

File hashes

Hashes for miniexact-1.6.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7aa22284a94d38903870e25d6d0f0a750f88f65e9574d31ee26436ebe704afc8
MD5 406f58bfe4f79ac696c83e6664f551cb
BLAKE2b-256 0d73791bcf3f4ba38bfa75c11b6cb3f98a9dfc2da57d310068fa25232140d943

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on miniexact/miniexact

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

Supported by

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