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

Uploaded Source

Built Distributions

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

miniexact-1.3.1-cp314-cp314t-win_arm64.whl (119.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

miniexact-1.3.1-cp314-cp314t-win_amd64.whl (141.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

miniexact-1.3.1-cp314-cp314t-win32.whl (104.0 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

miniexact-1.3.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (127.9 kB view details)

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

miniexact-1.3.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (120.1 kB view details)

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

miniexact-1.3.1-cp314-cp314t-macosx_11_0_arm64.whl (104.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

miniexact-1.3.1-cp314-cp314t-macosx_10_13_x86_64.whl (121.7 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

miniexact-1.3.1-cp314-cp314-win_arm64.whl (115.5 kB view details)

Uploaded CPython 3.14Windows ARM64

miniexact-1.3.1-cp314-cp314-win_amd64.whl (131.6 kB view details)

Uploaded CPython 3.14Windows x86-64

miniexact-1.3.1-cp314-cp314-win32.whl (100.6 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

miniexact-1.3.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (132.0 kB view details)

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

miniexact-1.3.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (121.9 kB view details)

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

miniexact-1.3.1-cp314-cp314-macosx_11_0_arm64.whl (102.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

miniexact-1.3.1-cp314-cp314-macosx_10_13_x86_64.whl (119.4 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

miniexact-1.3.1-cp313-cp313-win_arm64.whl (113.6 kB view details)

Uploaded CPython 3.13Windows ARM64

miniexact-1.3.1-cp313-cp313-win_amd64.whl (129.5 kB view details)

Uploaded CPython 3.13Windows x86-64

miniexact-1.3.1-cp313-cp313-win32.whl (98.9 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

miniexact-1.3.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (131.8 kB view details)

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

miniexact-1.3.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (121.6 kB view details)

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

miniexact-1.3.1-cp313-cp313-macosx_11_0_arm64.whl (102.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

miniexact-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl (119.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

miniexact-1.3.1-cp312-cp312-win_arm64.whl (113.7 kB view details)

Uploaded CPython 3.12Windows ARM64

miniexact-1.3.1-cp312-cp312-win_amd64.whl (129.4 kB view details)

Uploaded CPython 3.12Windows x86-64

miniexact-1.3.1-cp312-cp312-win32.whl (98.6 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

miniexact-1.3.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (131.8 kB view details)

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

miniexact-1.3.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (121.6 kB view details)

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

miniexact-1.3.1-cp312-cp312-macosx_11_0_arm64.whl (102.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

miniexact-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl (119.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

miniexact-1.3.1-cp311-cp311-win_arm64.whl (113.4 kB view details)

Uploaded CPython 3.11Windows ARM64

miniexact-1.3.1-cp311-cp311-win_amd64.whl (130.6 kB view details)

Uploaded CPython 3.11Windows x86-64

miniexact-1.3.1-cp311-cp311-win32.whl (98.9 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

miniexact-1.3.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (131.7 kB view details)

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

miniexact-1.3.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (121.2 kB view details)

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

miniexact-1.3.1-cp311-cp311-macosx_11_0_arm64.whl (102.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

miniexact-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl (118.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

miniexact-1.3.1-cp310-cp310-win_arm64.whl (113.4 kB view details)

Uploaded CPython 3.10Windows ARM64

miniexact-1.3.1-cp310-cp310-win_amd64.whl (130.7 kB view details)

Uploaded CPython 3.10Windows x86-64

miniexact-1.3.1-cp310-cp310-win32.whl (98.8 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

miniexact-1.3.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (131.8 kB view details)

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

miniexact-1.3.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (121.2 kB view details)

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

miniexact-1.3.1-cp310-cp310-macosx_11_0_arm64.whl (102.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

miniexact-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl (118.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

miniexact-1.3.1-cp39-cp39-win_arm64.whl (113.4 kB view details)

Uploaded CPython 3.9Windows ARM64

miniexact-1.3.1-cp39-cp39-win_amd64.whl (130.8 kB view details)

Uploaded CPython 3.9Windows x86-64

miniexact-1.3.1-cp39-cp39-win32.whl (98.7 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

miniexact-1.3.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (131.7 kB view details)

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

miniexact-1.3.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (121.2 kB view details)

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

miniexact-1.3.1-cp39-cp39-macosx_11_0_arm64.whl (102.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

miniexact-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl (118.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

miniexact-1.3.1-cp38-cp38-win_amd64.whl (128.7 kB view details)

Uploaded CPython 3.8Windows x86-64

miniexact-1.3.1-cp38-cp38-win32.whl (98.7 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

miniexact-1.3.1-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (132.2 kB view details)

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

miniexact-1.3.1-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (121.5 kB view details)

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

miniexact-1.3.1-cp38-cp38-macosx_11_0_arm64.whl (102.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

miniexact-1.3.1-cp38-cp38-macosx_10_9_x86_64.whl (118.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1.tar.gz
Algorithm Hash digest
SHA256 76c58b237fbf38c82b14dca3f62cbaff6147dda070e7453efcd0209414cc8bba
MD5 470a943f09abea78aa3c7b53c770353e
BLAKE2b-256 865e394fc944e1a9d1d0f0da53943ea518d1f60da559f1343bb569683d8e3463

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 27d35d2c09929f2b37f2291547e24aff5c1da0bc6fa002ef04aa00a3895057ab
MD5 16c25e5c82a13805511d716b4dd4334f
BLAKE2b-256 cc4d9c25ecb60a2d9a506336846a5460cbd36b1be84462a2c82e15bb60acc196

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 557e1b3c4b823ec9b63a56ffaf295aa573b6e47ced549a89f8e0254bb5695df2
MD5 86d3e3607b771d357d6f44b7bdb7fcfc
BLAKE2b-256 a78688262dfdc0bd11e76ad4928ccd75a1fbe68651c25adf13a4bd4f582a77bb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 46f24d1bd9b682f13129a408cb8fdad5c9f03dfb17a8580c3ff31068a2043971
MD5 c18dd5d4c0c0100aad4ac51beb9dc94a
BLAKE2b-256 ec439424d54418ebed12da575cbbf2dc73a066961d5d6a2471f8d1ccee291060

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b11b0b1087f5dd2ad1dadfb4d82d0df40bf11a733bd04502e125b52e833e7af6
MD5 3de348fe114dde53575123205736431b
BLAKE2b-256 05e06e76f52caeaf4ccc3b40fb6c4ff38ec4dfb2c66496204613bcc3957fc309

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eba8de602e1102470cd83885ed98d72bcfc46c4dd57e7ff7871599c9dd41c2b6
MD5 6663d45f175250456a334564eabdd8f9
BLAKE2b-256 bcdacacab31e44c645c9edb94d2a5ba0f4999a3373e676e7987019e622376286

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 86eb4b6f35235dc0e91c7238f9231b879d9afe6d956e12e147d6820b32712a41
MD5 f9bd20d7e4b295b604a42147e2613ceb
BLAKE2b-256 0d776cc455f68867525bef701418b2ebc188443743b808d72757bd2bd1c10dec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c7f99c6730a2b1cfba6ffe480c3bb070e639bd5ed189745ddb066f3ebc95ba1e
MD5 6aa125bb5ab4b4a28740ce8d60f34854
BLAKE2b-256 4794a66878064d87d9ec3017d7e1f97eb3cf750a992c12334c9127667ec4e02c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2580d578d6e5d4052e4a05a97f0c8159fbaa82d3d98d86e5508f16f4405e70fe
MD5 670602d9c1086a03322466c52a0d22bd
BLAKE2b-256 d7e2b18f63e3bb41d2347a3e268ee1f24386abe52e31885bcc61e23e12b092da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 48ecc64fa88247906887812163aa4ce6713ad098a0038aaee294d36ea3ae6c6e
MD5 6033d6eb351f9cb81a0ec14dbfc1ec8c
BLAKE2b-256 66d2276d15840ea7749c86ac044e4479de376132755e83d9964f146db9d5f0d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.3.1-cp314-cp314t-macosx_10_13_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.3.1-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 95ae856efc704c7f2af5f601bc814d29e62c05f166bd801dd5d30d8319f05a23
MD5 fca6372c0b14d8461750d0d789f0812c
BLAKE2b-256 624f4449b545b3de73c18b5f92bf689c991fea7e5c97c9c09521d0826cf5155d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b6d890007c9dba39b8c2736f4bb188556f1c5d5d628c20f9e499c5a74afa8fae
MD5 4f43c4912d1ac783ab81fe1f8f0122bc
BLAKE2b-256 574a1c60954d532f596e97beda51f9186dc24a6c72b9956107ff4aa6b0c644d1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6990ab678f3bd2ca67d39afbb14f0b68232cfa3db2c1b8fe9f435bb93a94e16e
MD5 f4b3a61b87f23a23b6a23825eaf96e68
BLAKE2b-256 de516c424f7fe52d73016b0e7eeb0064e9bf563b742f33225ee33c3945b89b56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc6b226de1848c1594e0c2d348caf6267f335058adff5d9c8dcb02399430dfac
MD5 9e03a07958070932c3b43ee66ed33da6
BLAKE2b-256 1b237d4a54329c3174489af038a1c4ad1578bff665ee2ec6069871dafde2abb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d9a6a7191373058bdb5d275b505ad54e3b458e708d03e80798454e8e2381449
MD5 5ed716ee31cb0db597f7cfc5525ba3a2
BLAKE2b-256 75d4d688c52680566606d30fa3fe005a179896b2551145ebb0624ecdb6909d3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2a194d90240527f3a2d3abac096983bac98e14ca00d8ad789632a9a718a09308
MD5 0f0fb2b72fcbf2d022b1241d578597f9
BLAKE2b-256 cb4e4f2fb0b193eb8ffb7b5afb16b4e4f49642f62fb0fd40b7f2449393be0206

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 66bc866a0f80b56f8657ac03f4fd3b384c716219885ea02d9d72b09d822ebf57
MD5 f430f2e8da2c9f5bf43df0888254315e
BLAKE2b-256 fbf3cc6518177263b339298f3eced57ab4544c6c58a36999438f60b632e045c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8577c4441505c6544b7cb2ec811a23e3588651655442f7b5d38bc735b2e114b9
MD5 d044fdca499576b09a9ec2b90e6e58f8
BLAKE2b-256 a36159b267a2cbf45ac043f8cc214d015afe944cf5dfea41e5c0219e4192ee14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d2f15bee6d777cba6f29c0faa1e867b7cba5703537f109d904aad70f8aa4fcac
MD5 fc522dec46127a0a95e8d1c4642739e1
BLAKE2b-256 955586a71ded8c66653327a0726d4b923027b7b8ecb42d5eec2bf17a68f583ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for miniexact-1.3.1-cp314-cp314-macosx_10_13_x86_64.whl:

Publisher: publish.yml on miniexact/miniexact

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

File details

Details for the file miniexact-1.3.1-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4282d4629cbaf0abf9f42058ef311748cba3da8098eb4feb7a7e5b2a25a38cfc
MD5 f69e5b8d60c31c571f13a19095ac5dc9
BLAKE2b-256 9cef249b1cde08b56649f7ee4758c8f882244e6cdb2d26970a6131f94334d912

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2a528566a3d96e2a7c35739387041850e78f1d01a30d4a35a499912a74753f72
MD5 3e6a7686363cb13013e2b6e09c701341
BLAKE2b-256 fd98fd7f1b87fc756a3690e21e4eebec22d343af7f70a66aacc27eebde0d7d4a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fa23ad331798486fae4a17de4a14861f0f9e837e821deb72b8a9c922e64dad7a
MD5 13d321e2da4a275f07597e3d83f50248
BLAKE2b-256 13bb74f8476e4b331ce4598ec631cb473c4335700cf3e6933c03f71649316550

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4869e8d7ca0010a1f01ab034630235a4d501e8f2cd04431e4a2df1db483fcf3
MD5 5178da0b7a3d59ec54f00f2510600dbe
BLAKE2b-256 58fcd606fa68de1d37b5e3d71d82be059da8d0d4dce24d3adc7f0d06ce92ecb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cbff059dd2567ad14f438f44320de75b30d4f238d432dc285af541472edf759e
MD5 1188e0bdc436091b36bbea310cd90956
BLAKE2b-256 cf1e11fe09fd04ea7a1a68f6a5e0d413e61027f31e7d3af7fea813f459837029

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d171084ba0336d9b3c8010eb2227976678abf8b15da9ffd8dabe8e8c92c833ef
MD5 fcac380ec946a1f4e0ed7a57f70e045c
BLAKE2b-256 48a6983361a8acdb4599367379e33c7800cbb7d395e95acd401da3f231d3c305

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 570dd02d1469aec591fe3f04d4fbd39069364018ccc59acf4b7d0a54287b5887
MD5 69939fb5a1850596827d29f534d6e4e1
BLAKE2b-256 e5efb76b40d566a975c5e23ed8128da92cc26c05bc121aecbf848909dbdb257b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b00604dac939acc7edbf3b84eca7228087f620f9cffa857d0398a89a1255428
MD5 f396e137634d87b26a4eb3f3a3d8dc5a
BLAKE2b-256 eca334dd25e91c8c0f89706cb761438754b12bbc950f3c13935af55ca723c2e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5e4197822a9a8580fb324e34bd918ca15610ebb235ae375239a44bc4682a157f
MD5 303155cda755d7d549ce38bf4905fec8
BLAKE2b-256 5906a141763752f102bb1e41985b3920d2b1ea510765f1bba74c091c8c52b707

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6c7640d0350b80d277dfa557601dcdf468e72cecae5c693679ef0a5e35bb80b6
MD5 ffd36030a0e30ac2edd8d67942cad99a
BLAKE2b-256 7a811fbb663f82eab1f180891c592b41a7a20410d13fa9a5f6ba46e6f8ffb730

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f1f43a9a52bb9642863a36b5f4a4bd465072ae341645f18b50d2f9449e72c855
MD5 bc125340ea983c205a41b75146612e1e
BLAKE2b-256 527f323a5ee777afe32d2ce8992e96457fe51384138cf7417478fccf5c3350a7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b88fc3594df917a7b03cf662af26b6542fd3b71a77947241702648fa2d8a2227
MD5 1069e98a45e5ad1958bff5ff8f4ab134
BLAKE2b-256 63b5592dd5732e82a39ac8254570c83248f9f1d83731cecd86733b598a69fb9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed676ca8704b88e6a27f38e3f74c09b6a52cb4e37419d3bba60e236741c45552
MD5 93a7076f34fbe423bce659357d08df23
BLAKE2b-256 94516afa782fa54f5119fda032cd91f75036c606576a50bef36abeabd3f12d7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34bd6a1572c957b1526a713a9ae34f1be20f46b44e0e10497ff16b3c76394800
MD5 08a49e988ec671980e3f2c002c4921f3
BLAKE2b-256 94fdedb5ce804e4991e0f19390ee89f391cedefbeb4f05d901cac6574fd3f247

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ab80db0049d1d3dc9afb8adf7350b1e51872cb361752da3461b8cdfd1abf9c6c
MD5 a0747f57ef5e16c63105ec4318eeddb5
BLAKE2b-256 465c1f24f039d01c1d80b7fe822e3ed43d4cac1cdec2fabf262eb5638cba6f40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 372ebf321592e232ecfdbc175c472400320bcac951686f6ea38d2dd75533ff62
MD5 631bf1f8115e3cd24cb77c38401bc5d1
BLAKE2b-256 b94fb5c1dc22ca47c2aa4ffd99d0a15e70018307659800bf27b1fff86075b97d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 593a65952a2b768d8a9642df6a35c2f3f7cc59b2edb974bec506d8559da9359c
MD5 8ca32060642402d009529fe4a1e17582
BLAKE2b-256 cf75c419e5bcae721729fd3cb26bfa04d706a673fb37ed393fd94d1b89697289

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b9efc8cc46460515add8526adeb62b818550b89dfdd57400a45248908ea0478a
MD5 8cbe402fbb3c5c2c85aaf8fd61a67220
BLAKE2b-256 fa19b43c37efb30b83d5d956089d6920015c959db13268baec6379766bd3d827

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 079b5f0436faa918dab954ea3c2ed2e86a36449a69d178d48224b6efaa9d25aa
MD5 185d2bc2b5144d44d958496c53414f81
BLAKE2b-256 be46262cc6714cf12e6b94cb5f77434c0e91d224851b17632849a599f9f163f5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 824279bcaec487d6e2e9c999f33aeeb05cc54a86a9c543422a2572a19aa8c2f2
MD5 1a1e4794a1ce040cde77bd1efb9236a1
BLAKE2b-256 ae29e5aecb56c6279a2b2cd80edbac63bfbeae22309c33632037d50ef1f0dd83

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ca29da39cc34063859dcf759ee71c4f687d882f685086717a17da49b51f76505
MD5 3d0e8315b022c8d547caa3125b9b57b0
BLAKE2b-256 ac58c16d13841d2dabbb14082030f2f3acb98b5fedeb7445664184946adc2c90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2aedf52cafac39bee7701249c682789480dda4eee9df37fa5489ae7891ffa8f9
MD5 75690dd7abd188fac5d7542102dbc5da
BLAKE2b-256 6e9fd24b94a4b9171c987a5f32941423461a0deca4467705176ee2208b030037

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 274e0f6f9a4b31f2aa7b3afc81adbad0c6b0c62f7ad9340836d92f91705acde9
MD5 12363ef9a63bdcce0f3e43aaf475a919
BLAKE2b-256 f3a62b9b663929c404694f3e54f7ea53556600193435eeaa0f318b01f13e931e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f1b6577766bb95070806170ebb1a85bb4c67e36073fcdf3a9c5718ffb642bca
MD5 3ed914be0e4e41d4d48080215d0da89c
BLAKE2b-256 4daeca887a874e363d1f476ec1ef42f7afe8ec328b9e9625a78784aa00624847

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e0f5f9ba327c9fe86dc94dfdcf0d02e14875f81fe7b971c846db10832c4c1962
MD5 72f5978f11797f6222850b2dccdb9db9
BLAKE2b-256 316c102a6bdf861333978034d371cee386a05c123173af50f44d1218255c051d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 391a40d54ac5abe014f6b4c1b077210f649d21058e7aa38da82f1204cded2752
MD5 ab334ddaaaa2ffae95f050e4d99ffe86
BLAKE2b-256 b7bfdd02973bff4ffd9a0a85128c13ccea03b5df35dc24bc8d9c05439ba0ae21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9111a7e8cfb80e56bf2860308f4ebc59a04024e40fc3ffddf9f36911e9ab3080
MD5 0a64b179cd5394cfb34dd9f2d6d121d6
BLAKE2b-256 afe41e93ad6fe13945bb922c74ed7a481c1227e956f91fef6d015bcdeaacfaee

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 3cf396e196dfde7055806824077c78f243f7318a6ebb3426065d3bc1a9d430bf
MD5 969b19f9e7b92056f023a18fecdae1ff
BLAKE2b-256 3f54121250f5f6361f1575d004a736cd46ab98f038eb6105c3f5005db239b50c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f68df92c8cfd4aceb7bd4ac28847008667e6c2ba877c0638f1619efbf6a92267
MD5 e637a29ae1355abb62fb096c838d0426
BLAKE2b-256 930f81f65776c6e9a8136b718e1fd87ef56abbb8e3260852bbbf435de4c8b7c1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 892f992ac75e0733f0861c52bf4883043e1af2f53741acfd73b6da93a72d6467
MD5 53f6e3f89002e6353a5fe79b455b13be
BLAKE2b-256 efe919e8e3a8e9ddbca81bee09e7ce0cac8a12cf1bf3de6ff2aea983f28c9960

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff34857d867fa0d7f0e5ab99d9f6b9b2590e442070471eef83678bdea098c366
MD5 1abadebde24e27b11f7c505192530f06
BLAKE2b-256 fcf34edee0780f2cde61032b028b0509b105b4fded6b4b5fbf7d0cfeffdb43b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 123856ef92c52f322b3135b694dffee77c4252b1ceb2c8ac7bcf3f6fa737a669
MD5 9a1378b8006c183d63bcf538402b08d0
BLAKE2b-256 106c1861480aac4035ddc509a878d4dea3b6c4c92813713feec4f5a9a51523cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7771b7f76b7f14604f7916d27fe648e62ab9fda53cabfb8d7aa4bb352f8e425f
MD5 81bc8f365d680dcf1c375d6cf16de80d
BLAKE2b-256 14d9b277f5bb6b04e5523d5ca50b6c35e6917c59fce21829863c701341a9cc7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 07cdc0bec08b27a76775f68af09eebf0a933aa4fff61edc56a4142e10f7f8f88
MD5 87f3fbde73611aa269423f421617cd24
BLAKE2b-256 db6c97777603db6aa0aeedf2060623979e5ba3ed8ba8a2eb50d4c18f9d7b2c85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b184459bcf966c513caab1290d57a890e1a79bf3792d66b0eb86524f76e20cec
MD5 b7bb3276adcfccec291a038b9bf15612
BLAKE2b-256 0935f4cfcc4060cc2213ade73a332ddb5f9360b14f79f6c56f9022f1bd7504c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b55285305bbb6a7dda7f03f1a4b49ee140d0eec5f49194e9ba2c456f0792c8b4
MD5 27b4ae563833c24bc40b2d769320274b
BLAKE2b-256 3483c6b179a36a76db5d30e7342f2c098a7758c3207870d2439130e9d5a6d02a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 5502bfdc0387874411757da2a4eecdd7fb3d33b08d3d44784521147a866ee524
MD5 a8d0a3771664ffd731b24f16020119d3
BLAKE2b-256 6004ae6f1be801cfc1c5383af8f75b3ef856af7fc54ce79d689e31d60334f412

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e16904b973dab4692d01371ec8bb3befcd5a91a835282372bdcd144e34b091e0
MD5 64eea6c9c8d163c2f5da21ad4c54dfb7
BLAKE2b-256 a9e0a8088c9965354f3a1e7d2c7ea069d93cf60458000d25fa594dbc911c045c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d853380ff7ab079325ad3fb3615cd2d5f175fec48a49c7b7029d3446e5338385
MD5 6d7aa31de37d6074727ebc9af897d2ce
BLAKE2b-256 1b59b3b1d68cdc33fb66b22d2401df509caad75de80d9286a044bb2b393c0ece

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d3c34753c887d8d5b084cf19542dc057e94178b5d6c6a436c4326cbe8129e2f
MD5 ec76c3498ddb4cdc0f67b8d2f975b45b
BLAKE2b-256 7c1da3852ded3260917c55e0dfb3f5192e9b147a3d112c222242cc53cc00bb8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e355b728cdfc2789005c6cb93183e27c09f223e9a5a7878457977692dcee436a
MD5 09dea75a3bde73508c593d2d4454749c
BLAKE2b-256 5c054068d3dd5162faf8a10d9c91904a9a04c7dd3207edf5b9506eff51b76b73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3f2f73ccb080ce93ddf6564b107302e8446d32d82838a8e84dfb03e8218cc821
MD5 b948a175b174054c4a4838bc3997e4e5
BLAKE2b-256 13b99d3baf5ff5debb23c8fd8b01b8da5783800ebbfee3fd8f44966ba663cfc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca1467545d73844ea9d2b2234bac52178fb1df2c6a5aa29457d5250240a33ab6
MD5 c78199b1014b5f91902b53255b4faefb
BLAKE2b-256 42bb4971cecd21d867e57163853c7b4fd9532d590442904f792a9bde34c5b219

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54c28d081a3cc7f21a550c4a5a42c81d8aed8e2f4d0b243e4d880b75efd5d4d0
MD5 da570ac91266fe10dcf2c5d7672ba0fe
BLAKE2b-256 92e9175615687a3bd489a3766e1367bb79486e04969400397ab8bfcecffee856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 87b0e524b0c0fd273503658d275ef2170394f8f86375c7e05d3ffc1e1ee4d852
MD5 775de5bb135265791c8431e3b93f77f0
BLAKE2b-256 90a0946ab707f18ddee7eab4b87bbe91995e99ea9551671a033ca14696a8e695

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b1c7c1e9ebb9483b04e9cea4f118c80f348a90bf21b8e688a1d2b550f469888c
MD5 f62da6026cefdb304cd07e169f10e2a3
BLAKE2b-256 b5930ec3322defc7a2e2e9dd16985b329960869f4f5b01f980d741d7971a5d5c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for miniexact-1.3.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3ea7e477a95c7cc7d3145b743ddbcc87a3825d2310341f8200e030ea953c01a4
MD5 5f32ef2cc7b8ef700bc6ed19a0e753b7
BLAKE2b-256 130f4cebb43cfea00cb7f94543e9026e683b704506800f7e10aec5d49edcc370

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3fd361b1d94bf196439fd1fcdb0f00edfbf623a3296dbac19f13dd55829a073
MD5 197e10cf58a384b1cf517f72960be896
BLAKE2b-256 ed52449391379907ce1d8fcd9aa70dc236341de30df5adf85b7ecbc63fd7b1c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1ce98bc35cf4a9ebfe994f1b0dc4796787f2f191319d544fc38b026de9c5d36
MD5 54eb8a9ba2787db3a27c3f9c4a59d5d3
BLAKE2b-256 d58bdab3bd890902b17eaf253e624f74f0194aebad443e4fbad6554a16083674

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e2a74e6fe0d02c16b63bc1745b32d6166795535ec6f3bb2245ee6f60fda2a3a5
MD5 755d49d90c619b5e578943f6e3cea389
BLAKE2b-256 165ac225900844f614acfdd4f99b10c56caa255cd7b1c9488bc63690cc987161

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 975a327276fd6667162d7b41a8063263d47fd79ef935e1f9aafacf24273c651b
MD5 69687b52b93e2fd240beaacac83c0369
BLAKE2b-256 dbeb97b35620a157a31d49837d1bec6b068ca93b0b523a2718db7e8f03f4b796

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3af70752bc68ec2c3d9e1218c379ccaa76393421e96dc93345c6d6d2b87b284b
MD5 280fae2ddfe1908250b91f235f4cc539
BLAKE2b-256 cacb54f408caf09f5189bff2b45e509b0318d894a29992a1cb8c7b3931a62d23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for miniexact-1.3.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a843beace28175a60832ddfa63bd938e0344df6685e5b8daf3012d3b8ac40a4c
MD5 11e5c18a5b184974e0decb88f7096a2e
BLAKE2b-256 d3fb52f0571d940cb54a826159c79102c7307d1fb21674ed109ab70c6dbda1b3

See more details on using hashes here.

Provenance

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