Skip to main content

Python-Bindings for the C++-based Set Cover Algorithm CFT.

Project description

Python Bindings for the AC-CFT Set Cover Heuristic

Implementation of the Caprara, Fischetti, and Toth algorithm for the Set Covering problem. The original code is written in C++ and can be found here. This Python-packages wraps the C++ code using pybind11 and provides a simple interface to solve set cover instances.

Caprara, A., Fischetti, M., & Toth, P. (1999). A Heuristic Method for the Set Covering Problem. Operations Research, 47(5), 730–743. doi:10.1287/opre.47.5.730

Install

The package can be installed via pip:

pip install pycft

It should be precompiled for Windows, Linux, and MacOS. If not precompiled version is available, it should be able to compile itself if a C++-compiler is available on the system.

Usage

To use the SetCoverSolver, first create an instance of the solver. You can then add sets with their respective costs and solve the set cover problem. The solver will find the optimal selection of sets that covers all elements at the minimum cost.

Here is an example:

from pycft import SetCoverSolver

solver = SetCoverSolver()
# Add sets with their respective costs
solver.add_set([0, 1, 2, 3, 4, 5, 6, 7, 8, 9], cost=10)
solver.add_set([0, 1, 2, 3, 4, 5], cost=5)
solver.add_set([0, 1, 2, 3, 4], cost=4)
solver.add_set([6, 7, 8, 9], cost=4)

# Solve the set cover problem
solver.solve()

# Retrieve and print the solution
solution = solver.get_solution()
print("The following sets have been selected:", solution)
print("The cost of the solution is:", solver.get_cost())
print("The lower bound of the solution is:", solver.get_lower_bound())

Ensure that all elements are zero-indexed and that every element between 0 and the maximum element appears in at least one set for a feasible solution.

Configuration

You can configure the solver by setting the following parameters in solve:

  • seed (int): Seed for the random number generator. Default is 0.
  • time_limit (int): Time limit in seconds. Default is 0 (no limit).
  • verbose (int): Verbosity level. Default is 2.
  • epsilon (float): Epsilon value for objective comparisons. Default is 0.999.
  • heur_iters (int): Number of iterations for the heuristic phase. Default is 250.
  • alpha (float): Relative fixing fraction increment. Default is 1.1.
  • beta (float): Relative cutoff value to terminate Refinement. Default is 1.0.
  • abs_subgrad_exit (float): Minimum LBs delta to trigger subgradient termination. Default is 1.0.
  • rel_subgrad_exit (float): Minimum LBs gap to trigger subgradient termination. Default is 0.001.
  • use_unit_costs (bool): Solve the given instance setting columns cost to one. Default is False.

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

pycft-1.0.0.tar.gz (42.6 MB view details)

Uploaded Source

Built Distributions

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

pycft-1.0.0-pp310-pypy310_pp73-win_amd64.whl (601.8 kB view details)

Uploaded PyPyWindows x86-64

pycft-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (489.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pycft-1.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (511.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pycft-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (474.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pycft-1.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (412.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pycft-1.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (441.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pycft-1.0.0-cp313-cp313-win_amd64.whl (603.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pycft-1.0.0-cp313-cp313-win32.whl (538.5 kB view details)

Uploaded CPython 3.13Windows x86

pycft-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pycft-1.0.0-cp313-cp313-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pycft-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pycft-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (489.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pycft-1.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (514.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

pycft-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (475.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pycft-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (413.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pycft-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl (442.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pycft-1.0.0-cp312-cp312-win_amd64.whl (603.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pycft-1.0.0-cp312-cp312-win32.whl (538.5 kB view details)

Uploaded CPython 3.12Windows x86

pycft-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pycft-1.0.0-cp312-cp312-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pycft-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pycft-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (488.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pycft-1.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (512.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pycft-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (475.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pycft-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (413.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pycft-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl (442.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pycft-1.0.0-cp311-cp311-win_amd64.whl (603.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pycft-1.0.0-cp311-cp311-win32.whl (538.4 kB view details)

Uploaded CPython 3.11Windows x86

pycft-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pycft-1.0.0-cp311-cp311-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pycft-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pycft-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (490.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pycft-1.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (514.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pycft-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (477.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pycft-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (413.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pycft-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl (442.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pycft-1.0.0-cp310-cp310-win_amd64.whl (602.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pycft-1.0.0-cp310-cp310-win32.whl (537.7 kB view details)

Uploaded CPython 3.10Windows x86

pycft-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pycft-1.0.0-cp310-cp310-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pycft-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pycft-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (488.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pycft-1.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (513.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pycft-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (475.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pycft-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (412.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pycft-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl (441.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file pycft-1.0.0.tar.gz.

File metadata

  • Download URL: pycft-1.0.0.tar.gz
  • Upload date:
  • Size: 42.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pycft-1.0.0.tar.gz
Algorithm Hash digest
SHA256 85736082f6c02d0a5a7af59a598b8593a9b74624cb87b31ef4bf9eee6fc42938
MD5 c99554c7d51a3c7e820298d1462b75ce
BLAKE2b-256 80abb3d47bb43db517d06b855dfe7affb9b813fe8f929abcbdc287fa9a34c400

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0.tar.gz:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d92f176efcb1567e7e44d6fe48c6ca4428e7065aec73c4cbccfecb621e664749
MD5 722e8e27462b8ba911816f8eaf45f489
BLAKE2b-256 4bd89f27e82caadd940d4e273104b83e4bdd379482bc87116c15ef89d5985d5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-pp310-pypy310_pp73-win_amd64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 923cc22bc11518709c3386e54e5cced6c15f21374d4be8e37a65c6bb27c1c4f8
MD5 77fb241af9b49cfe2eeb55f95f4d36a5
BLAKE2b-256 bb640417affafdeb157b63025f64c2f8ed01d2f631f1ac78f017dfc29b3f9378

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d8ff833dee69b38b13663ab7a7e805e88f2dedad2753b43685fb6dadd16d6b5f
MD5 91a42a9057fd1638c4d847019ea2bfe6
BLAKE2b-256 fa3cf6d6f674265b14a304b3a9d52f44f4fbc711c4bde365bb12e43aab0e56f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c6bd56045e9179c6a02a9f14ff0e54e066cc2bc86df2d31114dbba3fc603047
MD5 470acff2a1716a5d2a055d503d12c426
BLAKE2b-256 ded8865828552e06d26fd0ae6826b7d4101657a3158921d7cfab21f6c3a2d51b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92b2f433714c88bcdf6a5e82b13d8ff393ef7a5c770cc38731291af4d08c423e
MD5 8d0f6dbf3a87b2e639893a6db29c71a4
BLAKE2b-256 69716713a1ca6fee3c4b4fb1968cf7914b7b702804415bb0507864bc0d287a77

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 64f5185635d690b32931839e2fa42d39b971346ec779f97b3dda79978b6d7da2
MD5 0ef534d747d4ed0c4df893e37aa40294
BLAKE2b-256 d6632c430a75dd15e89ad3d2476a6a10ee95437b85e2f89dc1172b6ff3ae5243

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pycft-1.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 603.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 pycft-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b6dee626f5c99085694613abd92a583eee10e63227bd8eec0d5c5c57cf15c35c
MD5 2c9aec5695f6dd43fd02c5f605fcf8b5
BLAKE2b-256 2fe1a0fb6da0050193ffb18b08ab7f4a390642ec0d7aaf9678c54ff78036dfe0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp313-cp313-win_amd64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pycft-1.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 538.5 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 pycft-1.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3b2ab4f42cce65e6c5f0e3dd84017d6ec9b8f251fa728a90cac90a21d37321e4
MD5 e216cd33f16d6f6a342dfbb672c5d363
BLAKE2b-256 0f56567a4ccd6c5cdd9a8d59aafe65a6b3608a09d0418dfd43fbec058803d8bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp313-cp313-win32.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3704c1b26c2e68f312e6057d2fafd33972c15eb84124fe4f4f0b316eb396b35b
MD5 94ea3caf24370a63e2a59172c37b3f06
BLAKE2b-256 71a16a03688ae95a2f12536faa39613a830a2cc8bcead8e46e609f7f38f9e7bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b22e0ad4641bb28a4682d5777df33dab7ec852cc9f08770c0beb3951a66b2c80
MD5 024124f696c5bce0635602393364ab83
BLAKE2b-256 b0670947fd82b8b60656c90babe5ee14e6d79c0eb5d56a04a21754d5da31fce0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c58923bd7ade27eb2e750b9cad396ab1d5a0ce57604b164fd1d79272c2f2c345
MD5 e2e9291ceba93ff0715d9f075dd7943e
BLAKE2b-256 e5db93f26ce898bfd595279cde7780f3b4ec41316dbafba419c06fbfcf5e3595

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6feedc03500c4c4e0c04b1dc1f772c74023ca43a5e7d45ac1bc6db9c7cd27ddc
MD5 8276c9e5f345ee63a67e972a854efff2
BLAKE2b-256 eaca9b40122a4aca3701c5de7f4be10b19601523a1357fe5c560c07630769f90

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 22ed05ac5dc356613ab183bee108b5c6779f3812e2192360fff1a24583d57c9e
MD5 33f8e2c32ef3b666e2c82e44005b5a43
BLAKE2b-256 74791fd871d6ca2656667664251e8c331db776c1ce2dac329435721ce0bd5d57

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc9bd85c9c1db3e1fa7e07ac36137ae2c4fd9e5ac101f14ab0562d1826187bbf
MD5 174b105d8ac0f687a67a19cc5e74a456
BLAKE2b-256 26c63d6bcb77b7e9a1ec225fcb9da3acf9c0ad6e54ec01fe4f163a3e73e40cae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21ac97ea33cc1c384ad0ee2f918dd140c59d10d56c799e4e83d6a8ffdf8aac3b
MD5 45a44b7b8e98f206bbdbe8c07e0b3adb
BLAKE2b-256 e2c68c627a2f5eac41d4bc6b4ab5a29de7f9870c39d28e5ae789ed0506c8f0a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a82e88772d4eef73f33d514a0b4fa094700cb6287ee420e23905fa9a4b9b8cfa
MD5 a4fb61fd8246fb6fd6896a6eef1a6a39
BLAKE2b-256 5d5d7909639e7de87b316630b3b37f46afbcf62e85d74b94919b0fc1cbf00a55

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pycft-1.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 603.5 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 pycft-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cbe0d673967ead9694561f9a3e35a9dbc6921cd3cfb8562e2e5a278504e71d25
MD5 7642f20686b8457abc58583a5bb42d66
BLAKE2b-256 5b26a2edd3c7a14d1761bfd800c598668504d279f1b2a066bc83c1665c92e8b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp312-cp312-win_amd64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pycft-1.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 538.5 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 pycft-1.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 de843e9dd2d97eb981a9bcfb98c08c9406135ef095921f3f6ed311ddb08ab71b
MD5 b39ac39af16120e5d97165a33f91fbfd
BLAKE2b-256 a62b99bf4438599b6f0a1e002a7ed72bc76995af75a039e784893c5d1dfe4663

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp312-cp312-win32.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2949de521c1b2c64ebfac2473bba820a9c44dbd9f75e52d69520bf267116d953
MD5 e7e5d86d6f971c7167607ffc9afea4e5
BLAKE2b-256 6d116aaa4fecf1a5a2bed0a2659a423017f72ebd9499ccfdb068a469638b51e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8d0e202879c435f7a8c68ef1b8c07b5d45415bb7f776b94869c808ddd71d0a9c
MD5 9d498dbc09eab0ebd2003321474b9869
BLAKE2b-256 4da8f1df22366b28b7bd6387918c474e9f477fd5aed76c03fa3a15aa9ceca5f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed18e60b7a1b17029c340bb4f5758c010a2a470d99ca45fdb9bf443740635b04
MD5 6af901b8de3e6ae9de9d6499ff799f09
BLAKE2b-256 3c476a196ea3132d7f7b1a5d5d4f35f671c8f286a03c99fbcebe5a0775743e62

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff956d26060357436998fc2425fdc5deae577531723e22414aefa7f36997d23b
MD5 2f575bed8afcb3afc2a698a0fadf34a8
BLAKE2b-256 a84b5c8c2f6dd7fe9f890d52ee42b88050ba8ddcf80b4fdd7ba9a2bacf771bcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2b50d90e1ccdd61b0b3b67a1f741c335d210bbef62cac65df8336c14fad905dd
MD5 1436e4a4bc30db1e62e9b5c3687dcdbd
BLAKE2b-256 9f3538822526c06eea0886668a0b592817af3b2ed710bdd614503b75e5a9473c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d78608d49169c910ff2639c881bfa497803aa586e9ad28622ca5e41e0930c867
MD5 ea295326ea42dfa983453d1c950b0cb6
BLAKE2b-256 18b73639f54626266c908248a715ac638af2026f52199f7070c2ee5de4ec8fb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47f100219d51e20de4f86d4fe286ef1ad35a9ad430c373a52f9adf7a94b40ebc
MD5 ba7964b244ad3a2a3591373c15a065d6
BLAKE2b-256 1b5c9c077cac8b7f2d33aa7489b77d62d35ca0c2b358a0ca1556ec1fa6ae413b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 26a8de3686030c554bdd0efbe466dce9e726e36fd8422f9846138569c35dd82a
MD5 f7d84b83a03add1a37bd719c83eaa872
BLAKE2b-256 617ad3057a4355844fd9363c4bc8488eab83144168e3f7d49ddf7127ad49474f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pycft-1.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 603.2 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 pycft-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8df243ca1f6dddc327acd28acad0a6cf9d878e4b97f3e54cf01f54e957fc0d68
MD5 56fd36e4f64aba16734dbad3f72fd820
BLAKE2b-256 024084d47d7d2fb1eead68696193097d2ca7a9295ce4287c72a4603e47445460

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp311-cp311-win_amd64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pycft-1.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 538.4 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 pycft-1.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d8fee7a06349dd033d0cae09240af1c92f83c620005f11cc1969016c3583f830
MD5 c7dadfe9e9136c4a279e3e5217e4dddf
BLAKE2b-256 16ab1e1aeac8062977d40d47e1a3b573315581cef006340581e1010f2bbeb0be

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp311-cp311-win32.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3cf506dd43580b7432aaea8c2058789c3a35ce0da0e38a558d8fd8c3f91e6c7
MD5 c111963f6676dd391286b5411f3a693f
BLAKE2b-256 53b7ab1fd437d4bd29b4d6abe01cf5ec0728d22d5991370b61196a64c38c365c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d95b6ebc2848f41395579a2e9b97f79f34796a4036482780b3309a1aa08f8ea1
MD5 9755acbb549315a07cdcedc81cfda7e6
BLAKE2b-256 26b1a62ff0fe069d493c43f81ec5f614303af9acdcead6bb55d0627accdc28b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4a8b242d57eb6a50d35c933f102635d1cd115a9b795db919657d544be125e781
MD5 9daec66f681a0801e06932ca321c7324
BLAKE2b-256 548ce2c242e1221b1aa781f4332549f10dc92d4cd010758c27ba0e97e5f866c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6532872d743a72b50550cc26432be83aaaceb76da8ecc041a0f48e353cede66c
MD5 69c5a9429b9aa6031519416eae80813d
BLAKE2b-256 6e052f8f027b2f8dbbcd2742b88dce5329f13698a97af1001303e73eef2dfcc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 14156f8673fcf4c9f27757cc90b0215176451b139153477ce973ee713f857f54
MD5 534aa9367712b1729f98e35df662909c
BLAKE2b-256 a3f8612e1cedb3bbb4203555e9bd0b555d842b23205a522757bb91f76baee758

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a9236a4080b098880db841535b9f6c68baae6cfdea01f0050e4e90ad1559eab
MD5 935d40a52328781fb5bf8d2cb99e962d
BLAKE2b-256 ccea1184e2206bd8cc34e62e638074fe3315babcc1d5c2ec0cbd851e0314eba7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e150e4ff9c34b64cc890578209cffee808619a5cac620b16b1da07668ecc60ab
MD5 b867e9e9ff683c85a777876c90cbbc6d
BLAKE2b-256 e06f4acb2d046a44a10a58d0fa609ed1fb8ec0c2a245a695bfc77cd55761aa11

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9b3cd15dcd7f35fe5bfb616dce29b2b9ceeb513d1723ef30c4c1e8c80b6f2185
MD5 0f7223860e26e91ab8ee11fc3d551b7e
BLAKE2b-256 a12b50278b285c2a7f71c8ddaebe12c94405b33dd0adbaa9002cca1442ce645f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pycft-1.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 602.3 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 pycft-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 42e57b57bc7bb3f54df315036121543796f0de4c728501292adf854c58915b23
MD5 97254c3a27cfe2a67a3b5924f391d519
BLAKE2b-256 2f16598ffdf91e8ccf63762ed6e2161d7aeecc52f79e03c10beaa71e24def80f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp310-cp310-win_amd64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pycft-1.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 537.7 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 pycft-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3795866882eedc0e2c1df65944bad2ec01176fb951a5f5d283ed1177198a59c1
MD5 d573afa0dc2bbf894695e092b7cec396
BLAKE2b-256 2e488cc8510fa28e11264ba7de0eb0a05f91e636de73c0d10ea489dfcb4c3942

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp310-cp310-win32.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17d8cdf9438e9f3abeeea0d60d555be21fab2685ab956f31ab8cdc8a09f3128e
MD5 fb788ffec83f9aa3ae200d1483812589
BLAKE2b-256 42de4c228d7c3b15ccf21078f393635dc0f9eeba9480cfa9a5dba51b0cf01ce7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f63604f81f89c0fe5a82096c3ebe0764b99b88952037af5be728efb698be0eba
MD5 c2d64a93efdd25b245cfb8132e91fa13
BLAKE2b-256 5e6d44c487e031828e3d7ea8cf4184e02cca07391f5add6b7d82d0ac1250de6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5079852aee92ab12af503ae333f5cc32e247b012b28e9a4492849b179cf28c52
MD5 9243c614061c9d5df6a2594e4851ba10
BLAKE2b-256 488927a0ad8a59ac6a023bc989910a704edb286121733f4380dbc5744a72ad88

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d109597196faeb52e12cb43c01f3737ff12fb21345b2de0fbb003a7a4f062dd
MD5 dee4d230b5ffd2f2d0e4e51ff0f7f3cb
BLAKE2b-256 c13e8785a3c9950ac2dcc00cadc171a7dc8f5b269f588aa0f6e9fdba5f62050c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 33557fb80c3a525bf03458d6dc3973c7c2e9cc1fd01b1aba6772580de448d8a2
MD5 1d857b215a95764d7d17b86de72bf1ac
BLAKE2b-256 9505054831c0525af2be9eb193aa9ccc003bfff577cd635bb5d1eef17b535640

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb9d9137b06a0150c3ad3c9aaebcbde1b2ed74efe213bb72abbe5ece9521ca38
MD5 18452dff55589ab9d3da6c4a1ee9ba7e
BLAKE2b-256 abe8037e0f66e477c330ac38acf276e9bcf33c8a44107bf9fbe91eb1975a7350

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbf1f956b73e7ee1081cae325ebecbeb297bb4bb31f49af9d0f27a2dafb129b2
MD5 f1b972c1c23b02599bd5b50657a81bf4
BLAKE2b-256 5ee156e196664e53313effb6404debc2f25ef11f8fb79eb1b6ebd4306c7899d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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

File details

Details for the file pycft-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycft-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3ee7c91dd8a19236f136f5b118ef563a3221f0a60a84ff575c3404c003f77c91
MD5 b697066a8d821063128f8dce6a388558
BLAKE2b-256 ca57cd164efbff0813df0d1bfa2e2d2b7d8ecafb7a63c8f7bcc39328de5ab3c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: pypi-deploy.yml on c4v4/cft

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