Skip to main content

A thin Maxflow wrapper for Python

Project description

Thin wrapper for Maxflow

Thin Python wrapper for a modified version of the Maxflow algorithm by Yuri Boykov and Vladimir Kolmogorov. The original source code by Vladimir Kolmogorov availbable at http://pub.ist.ac.at/~vnk/software.html. This wrapper uses a modified version with support for larger graphs and slightly lower memory usage. See submodule repository for more details.

Maxflow vs. QPBO

A more advanced alternative to the Maxflow algorithm is (quadratic pseudo-Boolean optimization) QPBO, which also uses s-t graph cut. Unlike Maxflow, it allows for non-submodular energy terms, which Maxflow doesn't (unless you construct the graph in a specific way, which is what QPBO does). Amongst other things, this allows QPBO to solve optimization problems with exclusions terms, which can be very usefull. QPBO uses more memory and is slightly slower than Maxflow.

Installation

Install package using pip install thinmaxflow or clone this repository (including submodule). Building the package requires Cython.

Graph types

Currently, there are four different types of graphs: GraphInt, GraphShort, GraphFloat and GraphDouble. The only difference is the underlying datatypes used for the edge capacities in the graph. For stability, it is recommended to use GraphInt for integer capacities and GraphDouble for floating point capacities. However, in some cases, it maybe be favourable to use GraphShort or GraphFloat to reduce memory consumption.

Tiny example

import thinmaxflow as tf

# Create graph object.
graph = tf.GraphInt()

# Number of nodes to add.
nodes_to_add = 2

# Add two nodes.
first_node_id = graph.add_node(nodes_to_add)

# Add edges.
graph.add_tweights(0, 5, 0) # s     --5->   n(0)
graph.add_tweights(0, 0, 1) # n(0)  --1->   t
graph.add_tweights(1, 0, 3) # n(1)  --3->   t
graph.add_edge(0, 1, 2, 1)  # n(0)  --2->   n(1)
                            # n(1)  --1->   n(0)

# Find maxflow/cut graph.
flow = graph.maxflow()

for n in range(nodes_to_add):
    segment = graph.what_segment(n)
    print('Node %d belongs to segment %d.' % (n, segment))
# Node 0 belongs to segment 0.
# Node 1 belongs to segment 1.
    
print('Maximum flow: %s' % flow)
# Maximum flow: 3

License

As the Maxflow implementation is distributed under the GPLv3 license, so is this package.

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

thinmaxflow-0.1.6.tar.gz (151.8 kB view details)

Uploaded Source

Built Distributions

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

thinmaxflow-0.1.6-cp313-cp313-win_amd64.whl (78.6 kB view details)

Uploaded CPython 3.13Windows x86-64

thinmaxflow-0.1.6-cp313-cp313-win32.whl (70.7 kB view details)

Uploaded CPython 3.13Windows x86

thinmaxflow-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

thinmaxflow-0.1.6-cp313-cp313-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

thinmaxflow-0.1.6-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (445.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

thinmaxflow-0.1.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (420.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

thinmaxflow-0.1.6-cp313-cp313-macosx_11_0_arm64.whl (89.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

thinmaxflow-0.1.6-cp312-cp312-win_amd64.whl (79.5 kB view details)

Uploaded CPython 3.12Windows x86-64

thinmaxflow-0.1.6-cp312-cp312-win32.whl (71.3 kB view details)

Uploaded CPython 3.12Windows x86

thinmaxflow-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

thinmaxflow-0.1.6-cp312-cp312-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

thinmaxflow-0.1.6-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (450.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

thinmaxflow-0.1.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (426.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

thinmaxflow-0.1.6-cp312-cp312-macosx_11_0_arm64.whl (90.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

thinmaxflow-0.1.6-cp311-cp311-win_amd64.whl (77.8 kB view details)

Uploaded CPython 3.11Windows x86-64

thinmaxflow-0.1.6-cp311-cp311-win32.whl (70.2 kB view details)

Uploaded CPython 3.11Windows x86

thinmaxflow-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

thinmaxflow-0.1.6-cp311-cp311-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

thinmaxflow-0.1.6-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (446.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

thinmaxflow-0.1.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (418.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

thinmaxflow-0.1.6-cp311-cp311-macosx_11_0_arm64.whl (90.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

thinmaxflow-0.1.6-cp310-cp310-win_amd64.whl (77.6 kB view details)

Uploaded CPython 3.10Windows x86-64

thinmaxflow-0.1.6-cp310-cp310-win32.whl (70.1 kB view details)

Uploaded CPython 3.10Windows x86

thinmaxflow-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

thinmaxflow-0.1.6-cp310-cp310-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

thinmaxflow-0.1.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (421.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

thinmaxflow-0.1.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (393.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

thinmaxflow-0.1.6-cp310-cp310-macosx_11_0_arm64.whl (89.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

thinmaxflow-0.1.6-cp39-cp39-win_amd64.whl (78.0 kB view details)

Uploaded CPython 3.9Windows x86-64

thinmaxflow-0.1.6-cp39-cp39-win32.whl (70.6 kB view details)

Uploaded CPython 3.9Windows x86

thinmaxflow-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

thinmaxflow-0.1.6-cp39-cp39-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

thinmaxflow-0.1.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (424.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

thinmaxflow-0.1.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (396.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

thinmaxflow-0.1.6-cp39-cp39-macosx_11_0_arm64.whl (89.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

thinmaxflow-0.1.6-cp38-cp38-win_amd64.whl (77.0 kB view details)

Uploaded CPython 3.8Windows x86-64

thinmaxflow-0.1.6-cp38-cp38-win32.whl (70.7 kB view details)

Uploaded CPython 3.8Windows x86

thinmaxflow-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

thinmaxflow-0.1.6-cp38-cp38-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

thinmaxflow-0.1.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (422.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

thinmaxflow-0.1.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (395.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

thinmaxflow-0.1.6-cp38-cp38-macosx_11_0_arm64.whl (90.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

thinmaxflow-0.1.6-cp37-cp37m-win_amd64.whl (78.6 kB view details)

Uploaded CPython 3.7mWindows x86-64

thinmaxflow-0.1.6-cp37-cp37m-win32.whl (71.5 kB view details)

Uploaded CPython 3.7mWindows x86

thinmaxflow-0.1.6-cp37-cp37m-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

thinmaxflow-0.1.6-cp37-cp37m-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

thinmaxflow-0.1.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (407.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

thinmaxflow-0.1.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (377.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

thinmaxflow-0.1.6-cp36-cp36m-win_amd64.whl (85.9 kB view details)

Uploaded CPython 3.6mWindows x86-64

thinmaxflow-0.1.6-cp36-cp36m-win32.whl (75.2 kB view details)

Uploaded CPython 3.6mWindows x86

thinmaxflow-0.1.6-cp36-cp36m-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ x86-64

thinmaxflow-0.1.6-cp36-cp36m-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ i686

thinmaxflow-0.1.6-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (393.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

thinmaxflow-0.1.6-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (369.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

File details

Details for the file thinmaxflow-0.1.6.tar.gz.

File metadata

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

File hashes

Hashes for thinmaxflow-0.1.6.tar.gz
Algorithm Hash digest
SHA256 24f90635215853455974bc6285ddb322e85be90ca535b371257834ca1c682242
MD5 70b63b78dd9170f61a1b67fd6ba72cc5
BLAKE2b-256 fe8947585712fb878e2d30c2de58d4dbbd5b3ff7a6c85eef3ea353a18db009e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6.tar.gz:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 605dc0bd3909cbe00f7399c992538032d8c654dca8adf9aa10953e5fcdb67840
MD5 992abf721e0d8b69ff7b10a812a62cbf
BLAKE2b-256 969731d4375c8db2db82bef431e6c0e2e2bd77e60e1125f8753ee7c4e0ee7f3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp313-cp313-win32.whl.

File metadata

  • Download URL: thinmaxflow-0.1.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 70.7 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 thinmaxflow-0.1.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3e162afc5e49996c7b80c0a3912bd0f3cab6a1c7ae827fdd170e31b20252b41b
MD5 ae8bff442b98fdafa1e3d7bd806521f9
BLAKE2b-256 c2194d34203d158268a99c630b7281c23ccecb3ffadb357c32f64b491f57a218

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp313-cp313-win32.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a5471a33280044dddbd923d21c6407d4e90b923f1c23b8daa8bc6c8e8a3c79f
MD5 16c4c94f96ac544284b7d3eed5201f17
BLAKE2b-256 c22c96f11ab0e25d3ab9c5e9cf293289a5931485e13999f25246cba8e723b4de

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 159b15c552398e6f85f7bcea8a3ec61acc140ffc10e49894f4ab4a94b4b98a56
MD5 f39ee5aa91022844518f239888084cb6
BLAKE2b-256 a7bb2026651e933aedab23bf042ae1da3ce73dab3f76d7aee2d2ce09976188b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e0a8cd989d9fc5fb4e0daa02177f8e7950588fcd3f378358f877d9b1154d439c
MD5 6c38fb549bb35929632218cc3b2c94bf
BLAKE2b-256 d7237eb61a33eb9bb299fdb818d133de91505570ff2c4dfe2ee678d3a2acad83

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d2fa78e3fe5ba58985c401d9fb801739de3bbd9823c5b4f96a71f97abcd446c
MD5 87da7c2281704e258ae524bc99b985ba
BLAKE2b-256 f014cb20ecba16abc5ba7eb0516d10b1d56cb261db6a0266bb292995054cdf7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d77775a700dac659d703843122c5843af7d7722b269a5f981e125a13f749f873
MD5 b309b187d846d2b10d008f38bc5839be
BLAKE2b-256 63c66bb6efaa2abb8a91018b22e23722d2bd04a5f252275beb7fcf45e349e976

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d3e6a2546500b6615f0d982d7bfe84682ad103ec793d835e41822978e1d92174
MD5 b7458bde7a9b927ec7bc1ab8ba7c3dee
BLAKE2b-256 f415a8bdba8f6202c6b183a2dbcc1f2ffb07de4a4b22011684c02147ed406390

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp312-cp312-win32.whl.

File metadata

  • Download URL: thinmaxflow-0.1.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 71.3 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 thinmaxflow-0.1.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0d532d9e876e5ac6f0e2f847423d0897f3ad11dfeb4c6e202ab4927b43ed3b62
MD5 61bbd4576b294696d6026827dce0495a
BLAKE2b-256 7ccda59ce6dc7c4154c0c4e42a7086d3ff252c9dd89d683c9a43d9fbdfc6c72e

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp312-cp312-win32.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b943139a495b74b92dfac2e0d378d7cbea1f3de9cf91892b66a772496d107032
MD5 6c30d0e03ab1cfcada2b589d9fddc895
BLAKE2b-256 8810ccda1a810eb52fcc9467a0e148a1f7bfb1f5155d913607602a6a84527325

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0bd018ddc6559948cee4ce087bb2eca5c01675459b8921a15e45cc5dfae47e20
MD5 8dc093300bfa79c9a74f7de60e207c27
BLAKE2b-256 e35fd141b010189754efd18b662f623398459c25e65cbdd0305c9c332b25f1a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78d36c07bc39fead7a68b36d716302d3f123ca553f921dfd7a85c58a7cd5ac9c
MD5 f4973f9754b0badc6bd6d5d4c0a0e837
BLAKE2b-256 a23ba9fb5fed1ed11c0c24d5f8ddfa93c78dfbba6c28c1f4337597c9d14a771e

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 997887ffb8f69de05e5d546495a49d5fa9a548cf88e5b80e944ec64f6763007a
MD5 09f288393bf3ff616183f5fbbb017dfb
BLAKE2b-256 5f0a02cbb0badb36c838267a9f2299d482ae4a2932f516452f3f6c22316ad2dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f12bcd263a0715ffc3f943af48234518dbd749888c95bb741b90348cf08a72a5
MD5 fd89f0fac19a0131e23bb52f5cca4cc2
BLAKE2b-256 175d15a5fb4855401861147304f0c669645524756e9e1ba5ebe5588f550f771a

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3f476641e170ca715d7eedcc25d2c0404451fa6a660d2d5acca61ab80b67ee93
MD5 537f15e1cb9aec0be8dabcaded27a8c4
BLAKE2b-256 3e72bc361cefd48f04de734231594f65acec83ea5a10f45fc61319563497b6a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp311-cp311-win32.whl.

File metadata

  • Download URL: thinmaxflow-0.1.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 70.2 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 thinmaxflow-0.1.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dc155bac9c27706c604469ecbde115f18644e75b2758ba77ccbbf2eb2dd6e5c1
MD5 da0f39d075d801d1bfb3062c32c6f9a0
BLAKE2b-256 b804abb369472790f2a209f338e7d788da2c86699de632da755cf944b9681440

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp311-cp311-win32.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b32897e26d0a18c8269c414bc76ccbd73a7d739014b188df7a0d5e0ecca0eee
MD5 fdd872e50c44c8d3b7c04310a8ba6af8
BLAKE2b-256 492e4ab0fa8f13f434a4fa013a2924b77d721b50232fd0f6f95294b70de216e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd910fbd9c8300c7f59c5549761ed92b820d70ce2ad8510e895cdda305ad0263
MD5 4b96d732f38b21acf73d3256da5b7aca
BLAKE2b-256 e43bbdd05c8288ab12408868889aa9262f630033d4493bed93f76581b49c9b78

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf368750481848db13b763877417d7e4980167ccbbcf898539f428422dde0d99
MD5 944fa934c0f2375dd86dee7036fa8d83
BLAKE2b-256 0e1322cf9016416f19c524178a4daf4f2c9f9d41f5b10eeec210a35f3250069b

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a483543a63067bdf5a5130edb6cb24f8150095b269273b3827dbc6816a9e6dba
MD5 1ea7d3495763b1e7f58da9398175e7f7
BLAKE2b-256 b815b3503b3b75208890f6253fd04b7cfdeef83737a8500a2fdd4da323a23906

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d821c4dbb591aa96456588b37aa77d5c0eb4049976d9de1f45a4c7a89c601196
MD5 505cf4516043f3995175985f4b49b8bf
BLAKE2b-256 00697bc39dc2e82a22ea2c8501f567897cd139d305b56e26f6237ddb81aea988

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 409da53dd47bfbf39797cbc0f8e547790419d15e3da39ac8580d86ad620293f0
MD5 cc9f11f1a60f4c9e005b6fe9bef183ab
BLAKE2b-256 85e62bb191717138808a2e5e0dd70b9a02f94555e6d632fd7bec66453c264b9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp310-cp310-win32.whl.

File metadata

  • Download URL: thinmaxflow-0.1.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 70.1 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 thinmaxflow-0.1.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2350ffbdc9f03e8c4028e1c00a8eee5586ec2cd649415abb12674be73e4ca280
MD5 b14654b5038a3f3025095f41417827cb
BLAKE2b-256 785e6c9a2c6d2625adfe68217c36958b263171490aefa1f4c382e8658369f035

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp310-cp310-win32.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca3caa0ca739c98ff4320d5aa7d648f7bb425ec5a089f18742c4c612d45d1f85
MD5 e469dfb9467e77dc87bef44ff69381e7
BLAKE2b-256 1e54dbf8f286ce1c21f763e1d5529edf03c4de20b652eac3ccd55d68eb6cb52b

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1522d6cfbd432210c93542d80f301fffe56948b1a47e97180efe4b34e1fdb0a7
MD5 6dd076f41ddbccf8d887f339a4b36a61
BLAKE2b-256 c0ac31d177dd0d225ff728ef73a5551316039cd13d8ae91b1badc9ef3b6116ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18097715c69ed23bc1b993e7a7acae15604b8b6017418046a229faa624e4d9ce
MD5 526c06d6856591e652d839ebe71b40da
BLAKE2b-256 f51cb224e83ada49dd1c6f2ac5310f4afc33e7a682cdfe326aa39442b6d6d201

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24856cdde0c0ccd23631e833f675eccd536f5c94ef0b839b48b40a29755dde58
MD5 54e9b35227937f719fd8adb91243cd60
BLAKE2b-256 18c491288afdbca66db8cea7606fa1ab36f6417e747f75ec9c3d7b6d563b6c81

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20f53934982a30cd8cb7450468a6e0a17ae38400f0979df857162b552fd8e7c3
MD5 5c08f79f059fb6e198a8925f2406be88
BLAKE2b-256 40c509172d4e7c0b777cb33f1ecfe8fdf09f692575a7e19b62e8fa9682519415

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: thinmaxflow-0.1.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 78.0 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 thinmaxflow-0.1.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 abcee5541ec5ff922501af8cb90db6d345d6e479d7d9ee4a3b89e892561290eb
MD5 d404ae38a8ef94b16f2271db7043320f
BLAKE2b-256 6dae5d02204f950058b59b040e150913e936474dcbf0fa7e71d400d7077980c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp39-cp39-win_amd64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp39-cp39-win32.whl.

File metadata

  • Download URL: thinmaxflow-0.1.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 70.6 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 thinmaxflow-0.1.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5dad102717c0775a97ac953937d9b1bdc910a50f66aa177b3d095a4a657dea53
MD5 741c56359cf43f7b05dab723f74eed30
BLAKE2b-256 309dfdbf1aa382e6e9050693e181a9720a6b78544ddccf22a2d5bfa3ae51a213

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp39-cp39-win32.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c392b07891f188cd142f4b7a6cdff642ce56a1b2b1fbf3307c805413d0dab3a4
MD5 5b5e108ea3b3bb875614e64ca0ae6397
BLAKE2b-256 086b33ffbcc91ffbcd696ff27a8f34d60e558bf34a3d7d193303c9deb31dbbbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 31be960adae25c70afe1bb3261a353da2e350b108da63a9ad02ccba4f05d9488
MD5 65256a591d4f8553e457e69393f7b5f9
BLAKE2b-256 0688f92ca27f0551c0a62718cdf7c583ae262446023119f9de3265a0ea4f82e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7e869ed0c5fc7fa1c6d7fea0079b5b4dd119d9958e019bc3f0907d2b68ddac9
MD5 640bdb5ccf0fdcefa5c82f4fc2d69d32
BLAKE2b-256 5f660f64f5d84a411805732de821b073502afb94a1aac6b116b3d7ab26dad2bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e976cc4a396b186cadef9ed798d13b8ae0e28acebec11faacdb3fdfb97e83638
MD5 dcb0f1d6e3dad2f766741abf82e21bca
BLAKE2b-256 494e7831a97c1c4162ebd599fb87378ca6d52c135c2b34303f975e01c551891a

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 366960cdc967a6f16c1f68e7c13e8f43a8e98a5f5dad6991fcaa99171f499a9d
MD5 3b4c49359da95ed56b19a9b9bdbeeaf3
BLAKE2b-256 8ba86123d3a6f79539aa12a6e98c8a4f6fc26c08bfe32075a4fa38425bf05a25

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: thinmaxflow-0.1.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 77.0 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 thinmaxflow-0.1.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 93dc1975464236a38865d5e13a79097313eccdad0445118c5743f7bd8d3ea74b
MD5 ec0694d970c5af070965469878d1a41d
BLAKE2b-256 38264188c3b5d2f86a17101bc44458b8ab47eb31f5cc5f42a82ffa4dd44aaf47

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp38-cp38-win_amd64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp38-cp38-win32.whl.

File metadata

  • Download URL: thinmaxflow-0.1.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 70.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 thinmaxflow-0.1.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0b092989930d57a252c2406e620e8ec5dfe6e1a558e7bf8f9aac9c181d85b678
MD5 e0f4002eb510bec197dc446da21d745d
BLAKE2b-256 286fd2ab29b8491696ab40c487e1c114723b4d2d51aa64a6686df1e3bfb3665a

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp38-cp38-win32.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43ae56cdb57a786aaaf9067134c0daaf38722e345bb4bf9ee3ae95f43134460f
MD5 fa36d6f85aefca30edc5a48d6dfc2506
BLAKE2b-256 22b709896cd45b714572d973313efb8d0abaf17a787c19cf52d7a313a0bdf777

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0c8f552205afea186450a125b3327546099a5348ac4c2e9b1217d3a3f5834a0b
MD5 e5a14ccd39a55025eff46ffbf292a839
BLAKE2b-256 29e6172b4bcc5164aaca4c8d6e7a4253a487004540724c65aea2c77f7ce86baf

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08395d686d7b271aec70a6a63eab6b66ad826aff4038e7b4dd6dbeb05108eaa4
MD5 ca013b79eab9f0eac948d107a6c830a4
BLAKE2b-256 053f32068399c80e9f7e33b2ea9ed4127dbe328368274b458d067bb442e485dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b898b3a6745cd2743960401f4da4bec1c0fd74f1044ee27478eaaaff42349b96
MD5 a4b9fa19e73377525bdb33e179597ced
BLAKE2b-256 f76ad9545468e43f02b3e36b9f84ff1a5534ac55b8ae5202f3eb842736100126

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4214f744d199f1f82d4085eb614bc668033a2577a3abe0a6d4b523aa5e61d744
MD5 d7ca9488bed4e8c87f2d834fbbb4f6d5
BLAKE2b-256 5368c23dd169f7475625f3a2569948949614035b6d363b1b3950159eed71efa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: thinmaxflow-0.1.6-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 78.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for thinmaxflow-0.1.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 232c840777ca9abe57354bf3beac9f00c2fcb2dcedf458a9f6c0ec8a801c9562
MD5 4a4c6a5baba36fb1df8564c08b01b30d
BLAKE2b-256 55c761d7ace931f94242381e1fb793ad88fb54438b2889017905f36fc11e53f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp37-cp37m-win_amd64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp37-cp37m-win32.whl.

File metadata

  • Download URL: thinmaxflow-0.1.6-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 71.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for thinmaxflow-0.1.6-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a74fbd57216bd3d05be6ba737545c2633e2982301e75b7a127b2e0c4c63c42c8
MD5 ef26bbd5c3bef749f144057cb5b18624
BLAKE2b-256 db46974fbe9690792fb4c15d08caa26c123c91db7966b5edb703f0a10add8246

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp37-cp37m-win32.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bee55efebc367840d5b3071c0d5c6395cb529e63270dbe94d808fdedc97bb917
MD5 9a6c894230e9cfd7a9e86b726272b926
BLAKE2b-256 3fae8e142bfccf1377bd8997269c353cd3b5da16c161a29d314fb56d31744d46

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp37-cp37m-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d9df88154251e1ee1e2abb9a67eb3ba414b141c31f13b15effe2a4153c3f5300
MD5 df42bda8f6b35ecfb89813a0f02d8d56
BLAKE2b-256 f454782f7182fb1a00c62b61b80b526131c99c92f47dc65321e220213c9086d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp37-cp37m-musllinux_1_2_i686.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a230f90f696af327d5c2d70672c02aea403996e07a13d64f702191661270225
MD5 3efcfb1b0f2d58846b272cc92ae7c673
BLAKE2b-256 ac210d0854c8b56205c9800c6001903044b2245524ac5ad7de50b87234b95031

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d965620c535f59b7bb67453c54968678e47ad6e2f8a736097c4a68c7fe069f55
MD5 d850b77dca426981879360704fcf953d
BLAKE2b-256 4b2f209b0dc50d1e5c3da942a655361845d7a007dee689134d071a1657b55b7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: thinmaxflow-0.1.6-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 85.9 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for thinmaxflow-0.1.6-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e33ef65b34fa11d70b339e50b1e9ff513f1b208b626eff099f4a00a84ea5e1ed
MD5 7b0065823c85e9357b1099ddb56b7429
BLAKE2b-256 051e6c48c8d46713692ccb955bff1ebc553d1013a7beccc6b72ad56463a64413

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp36-cp36m-win_amd64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp36-cp36m-win32.whl.

File metadata

  • Download URL: thinmaxflow-0.1.6-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 75.2 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for thinmaxflow-0.1.6-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b904b9c33fe902e64aadf67c2ff66f8f297d6acc6a8ff488695cf20657568cad
MD5 186498c2c5d8de04db46b0e29d9868d8
BLAKE2b-256 18b9f5f917634ee5bd57d3fc102dd2fe4e99dc697a3d2c7f6f936c0dd2a2660f

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp36-cp36m-win32.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2c9e96f992a917d7df13b10bf49bbc09b64987ee1799c5f4805005283d96b14
MD5 9eddb7fa92d95d70fd7511c2438c8f63
BLAKE2b-256 27aedd106866f3aba160d57f95c4ba22585dfa935b550691fe0ab05058844678

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp36-cp36m-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp36-cp36m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5ce4e8acff66cd85b18a619d97ed5a7f807753f5aed1efd4499c7b6772d7e630
MD5 0b02369b8f5b8e5646475c19ab9569db
BLAKE2b-256 b9ca832b86d05e0a49736e4482081fd43079ec4bb9eb47fef5ee48671dedda1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp36-cp36m-musllinux_1_2_i686.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cca76e652fba4a04e5ad6b2f7f79084eda1f3eb3c8e09f035191638b571172c4
MD5 eb9952cb6ef50e35fb27f0e9b13c9273
BLAKE2b-256 f35941539fbbe5dc244c35fd1de3adc1f6887ce305bfaa31ef3af13ecc656acd

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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

File details

Details for the file thinmaxflow-0.1.6-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for thinmaxflow-0.1.6-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 198856b74ad8ac09719c4cb000f056372572577815cf12b07000b398b734b178
MD5 9150faaf0d6629455def4fddf4daa3d2
BLAKE2b-256 f3792a333654e82a23b25e84f5cb80b54b728a5e3df9430f83f0ee19d3ce55c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for thinmaxflow-0.1.6-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on Skielex/thinmaxflow

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