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

Install

We will publish the package on PyPI soon. For now, you can install the package by cloning the repository and running the following command in the root directory:

pip install --verbose .

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-0.0.1.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-0.0.1-pp310-pypy310_pp73-win_amd64.whl (601.5 kB view details)

Uploaded PyPyWindows x86-64

pycft-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (488.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pycft-0.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (511.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pycft-0.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (474.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pycft-0.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (411.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pycft-0.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (441.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pycft-0.0.1-cp313-cp313-win_amd64.whl (603.2 kB view details)

Uploaded CPython 3.13Windows x86-64

pycft-0.0.1-cp313-cp313-win32.whl (538.2 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pycft-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (489.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pycft-0.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (513.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

pycft-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (475.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pycft-0.0.1-cp313-cp313-macosx_11_0_arm64.whl (413.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pycft-0.0.1-cp313-cp313-macosx_10_13_x86_64.whl (442.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pycft-0.0.1-cp312-cp312-win_amd64.whl (603.2 kB view details)

Uploaded CPython 3.12Windows x86-64

pycft-0.0.1-cp312-cp312-win32.whl (538.2 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pycft-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (488.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pycft-0.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (512.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pycft-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (475.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pycft-0.0.1-cp312-cp312-macosx_11_0_arm64.whl (413.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pycft-0.0.1-cp312-cp312-macosx_10_13_x86_64.whl (442.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pycft-0.0.1-cp311-cp311-win_amd64.whl (602.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pycft-0.0.1-cp311-cp311-win32.whl (538.0 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pycft-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (490.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pycft-0.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (513.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pycft-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (476.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pycft-0.0.1-cp311-cp311-macosx_11_0_arm64.whl (413.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pycft-0.0.1-cp311-cp311-macosx_10_9_x86_64.whl (442.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pycft-0.0.1-cp310-cp310-win_amd64.whl (602.0 kB view details)

Uploaded CPython 3.10Windows x86-64

pycft-0.0.1-cp310-cp310-win32.whl (537.3 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pycft-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (487.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pycft-0.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (513.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pycft-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (475.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pycft-0.0.1-cp310-cp310-macosx_11_0_arm64.whl (411.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pycft-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl (440.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pycft-0.0.1.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-0.0.1.tar.gz
Algorithm Hash digest
SHA256 c885c9b3b8ad3b965ea575f79e91ba34ca9da64e7e65ab20c5a61b1f436ec4a6
MD5 8d0ef0e438351d14fe76c8ef0af029ff
BLAKE2b-256 11a1573d767e9e30afea3d0f79af1ecb5ff800de1e391fe13a4fa9be58b859f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1.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-0.0.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 eaa0631b123e237d781265221a875db46fdfce2b1476386f6d20c53190e60a19
MD5 ce33821469d56ead8b394c60fb82ba3c
BLAKE2b-256 688000962309d60cee426dfd716c54871baa3725a80d6922c056e19b6100a1e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ed9d228e469ced87ce3359cfd5d0ed638b2da672b1db7474bf81ee3eb3ed2b5
MD5 475d47f83530bd5508aece7199d6d25f
BLAKE2b-256 e7500f6a6a6f6670b59a1d5ceb9ebbc61001ae6b5334338f254722a4b0831392

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c1f8361f10a7e4d7aee3f13525bfdab4c5845ca81bfedcf709ccaff767671cd
MD5 a9cd0017a70f305782b3ed06b658810e
BLAKE2b-256 6a56e7d488ccbe9c57685b0f3818d83632a4cce9e7119954f8605d5bdbce33ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc88dd28bb1defaa7d6fb5b8abe1e83f57c82dc6032b37f1842eaff0c33ee216
MD5 4db37e0f4a99f6849f3e90d364756385
BLAKE2b-256 903b9149d8c7b6e1c8c4942a9f7c5bfafb0d363e54dd77cc39a7154121cbbb45

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07eddecdd4b879d05a6d8922bd8a453900af287342a01a3d44166ece9b793ac4
MD5 f3eec5b6e9eacd0011c73d4d89b434a4
BLAKE2b-256 01a611d35c6926ea21240e3f6f9b985193e763958d7fe582978f37f9187cd8da

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 878f9358af731a7f59730dbf99558118f2aa7a46213de678471c8f703f1168ea
MD5 9cd527f4850241e28839e1ee753eb98b
BLAKE2b-256 b7b34c54b023730154ea7b4a38fd6b11643cf4e30a023ad149e9fda2d19a4030

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pycft-0.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 603.2 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-0.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8f4fc42818dd87370e1f0e0468a9058ded89f1597b3053ddd1c1d9b3bb95e984
MD5 35c412a4266f2702e46587cf944f7003
BLAKE2b-256 3d18c364e90c207663f595d13fb45485ee71766e5fdb066f8fa78508ed21fa94

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: pycft-0.0.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 538.2 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-0.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9b1c545b5d9052d59152fac2025bdb6c1bbf7c09552bd192e572604d03dea05e
MD5 518c2127da2fe4ca43fac2433f8849d1
BLAKE2b-256 6ed7910d1cb8585de6bf393838895ceef8cb73dd7949a688ebfe30ccbf4cd290

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1dc8e95bae569ee79e35df1ea9ae0eab5e220e2bf4cbc4521199df8864130340
MD5 2f8e182058ad72eef63c138b623208a2
BLAKE2b-256 f62fb9fe87d9a5761ec1f33783f85ea9941112ea6c829c7678350a85cc4e4f29

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bf8e48f4bd2c96807f8b0d4ce3451f4e357975da7d6e4677c9bd963770e92ff4
MD5 cc6cfd5554b7a4317adc87806bb4ebaa
BLAKE2b-256 206af66e0b67a1f18764f0667715fd3067bf2833cef9d89fd8deee7132d782c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9153198eddd03473c9b70a6f5b48779895595eb3c530cba3b9e4f32ba8909968
MD5 990a10176484a2d57016f45573c2eb72
BLAKE2b-256 2150f8843ee56e7227300e7309199adbe246f7d635f3a43c1cd0ff995c359210

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2910c689d07d6d8198947d06046d73ceb9fcea29a718642b4da98374f1409680
MD5 b12c6844231a4917d50ed5fbebdc9eb0
BLAKE2b-256 6c9ddbab85410dcc2bb7cd3c63a056ac79fc1934e7e896ba91dfe36a2ad7a479

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ffd919f097e110fb1de8fb7bfca5207b729b85d53f7fe693b56a639f5c42d020
MD5 a4060f5d4e51e3afc8d2272a907a1fa8
BLAKE2b-256 9461edeeac50a23552b44f3ce3d1baf2e5e0e1568a7a7bf8d7437f4ea4df98dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4d777e4a8d23afa60b14de93e52c1ee67f5692aa8aceb8741d60fae4f94089b
MD5 7c0f436e3811f9201783fa7c772c61c1
BLAKE2b-256 8370729fc317eef6228a4641fcaaefc9086dffbcfe29f50c57fc7fc7c28f4167

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ca93d170211b40e8cd6c74cde3bca91b20880d87f07469da78d01b9a66685e1
MD5 a55ed373f7b3c2df9127e8e92e10dbf1
BLAKE2b-256 6e69586c0e6a17223dccbac3541815b8cd53414d77b977ae1e18247637c69d1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 77153722c963428a9ca82e7d9c58219b71c6853e01747d521681c77ed6b4dcf8
MD5 f2b3ff8430d7296fb6a4d08775a8c77a
BLAKE2b-256 d484ecb58640ebf8b746e6fba8d67832b6577a350bff7e9d8713e95e889e62b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pycft-0.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 603.2 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-0.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7515a28989db9a45a96cccb568f7d6dc2fa0e60d6c0ddfb53599d682482e2512
MD5 b02e7bd4d6c294f353cec29a8e6e6594
BLAKE2b-256 1e07ba20d3cdd9f5ddec8164dd714ba0ff10272e203691c3eaa9f99eefcf5d24

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: pycft-0.0.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 538.2 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-0.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2031b3af55c5c0e0323bbe66b4a57086c19e4c988974fa601512406214bfcaec
MD5 0497e31f4de1b8c50541e7f4842bdb6c
BLAKE2b-256 d06809c112c89c17a8990c4fc0bea022bcb53e631c007ac71ca59e926f70d89a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a7933ba5f398f12976bf151f39467fde4b7e7203d4097178f677e9bbf27a259
MD5 2e0a13af1eb081c278f9d0e6ca37d45d
BLAKE2b-256 9256b343792d131aa2d1e540132011b4d186ebea866065465909c7e7668479a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 30d6e235fa3b63e456a139c47e5486e6898339d4b5f0f121088f9ff6d414e579
MD5 23e155bd8df479a5f7f7c8bb1242b8a3
BLAKE2b-256 13deaa5c3cb17b7ce398310031c505c0bcab37e2e916700469f1234af3ed4d15

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0455f41bc7d6e73874d2013bd21c6b9361bbb43f2065d21a529a2746b34bcb3d
MD5 c46cfc7df1d3cf32ec3b66c1971ece3d
BLAKE2b-256 412258fe69d0fb6ee7d3d9b5369b44f68f01da6b4542c3c3ed1366a37823d454

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c501ccd783000419b7ebd2745991a234aa5c88c444cfd4d200a3efdc8be3a8ab
MD5 29ed3c1745fb82e51a72055a36fb8fac
BLAKE2b-256 100cb28056361da84ad857a0cf1c7bdd535ef6709d91f14887dc3e30a25982fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 05566b682afaf8e8b64882aa77723cbe93c2e2e96992e7353ab734874f82a659
MD5 0e06019589d4eb58e8ae3edbeb72613f
BLAKE2b-256 52f8567e3668d162315df8986a0fc4441e07c55acb2ac3c65046929499ddd236

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b270751706abb269d4217f2b8c6d91c7835d844645f40966b1f23ff3df9b91a
MD5 ef3212627750c538b4634d40b6eb726c
BLAKE2b-256 146b8590d6aa002402b74b9f5f775385ace5f1eb3bb62fcf22051ca0b6a35fd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9934ab3053dace8eedd6262266d1d3789889c0bcb3fa005c5a6c013537677d3
MD5 6a59ce0fdef7f0e67e2e1cbf5711dca5
BLAKE2b-256 305f8d6c5041b51310eff1b3c19d1babb0a460f17f411b051ca0776c83f3829f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 28f7ec08e141c96b942db74ebe4c0726e4ad3649e418e1e661de2e6ffd85aa11
MD5 756dfcffe8cc75f1ed1765573ecba675
BLAKE2b-256 6bc5801e67950705ac8dece712f0ad3cbe866b22534224009553b2969846fac5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pycft-0.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 602.9 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-0.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8785538ceecf0c8dfa4b56f3402378bc9bdb97830d02a079fd80b48cd93a3c14
MD5 163014aac9d76dc0e585ca585ff0a67a
BLAKE2b-256 167fae12a3ce15c1153d3534fb5614b81fd851d2cb4b8012fc75eec4df9810d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: pycft-0.0.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 538.0 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-0.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 09208302ad49122b19e2e4bcf4a85cba3b155a056326b8eaf8fe495f66c13701
MD5 d7ffb46ceef9a53c8bf00fc1e070d860
BLAKE2b-256 c18405168a6144f59686b1b03bb3589fce2280057364788a3a026eb6bd0d4aa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8a8df8ffeb5f763f9a80d6bb9988f9b8b54ee028b0d70beb7339225658d51a7
MD5 7e629767e7b081dd4de8ab5e7ab1d022
BLAKE2b-256 377c31416b1cbfa79a959454eee71b927e1b69b046518a61ee01860c949648d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5849a8fc165c02164f1ec9ed6e5fae236b23746b8eeb5d995687180837cb5b77
MD5 37b953abb85f8097c75b8dbe4249763f
BLAKE2b-256 a519d51d43e9504a3ac9bb300c710b70ca6d545992f796a5914d0bcc8aa63b77

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb63164a26fd5cc96dca4138f42e98fa013598bc70ffa46b007db14c21195dc9
MD5 5ba5306c0f2e435c3b927a5ca530a071
BLAKE2b-256 360fa19c7d8060557e1ae38103513f74952780e253963c4c25eb52c5795b5bd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac8dc42504404b4235b3b7625a7894a1f655744ca614e85a61b0fa15169a4e60
MD5 82117b91d64adc5e67a169831a4dba39
BLAKE2b-256 8e8c6b20d60ea086d225f4e141e8e4bdc7dd3042b4b0981e52373f7d22244ec9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bb221a796fded70b97b5a9992db74a66d137df53b152e9d7f4965b278e7f858f
MD5 e7122c81101022a4e6e11da70e2d8b71
BLAKE2b-256 3efca9f1229b0882155ed8a432aa8bb510eafa05f5b851624e26cf5f2f420adf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18a1c2ae2bb1235f168e849a98ea8b649a607fd6b6bf9b21b95d7926aaa1c34c
MD5 32f20e906fb1e9ae27efeed37116fc45
BLAKE2b-256 c1efe5ba4e7a7bbf7374347a1c254b0ab6289a018719e709a3998865f24ef318

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64d9c2019c9673771524717208ad39945b78bc94b1cd0d9969d078d876f0f7c2
MD5 6524ce7f21f2dac8d1317af17ccbb080
BLAKE2b-256 c7e9fec92a729fea9613a3f1f402c8774a0aed1b0613ccfe2853b40b1b1414bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ee60643e75cef94a4c586a5299d1277940dfc2475498ba29032548187ae31aaf
MD5 3cf21f2d766fcc50513357613615d273
BLAKE2b-256 156d61f603e01dc041aeb107bf5349f680f957153e4096198638fb9d08060cd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pycft-0.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 602.0 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-0.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 71bd95fa9ca4ed7450fca74b6f64892d2f82cca2287f4124cf65da46a37d8ad5
MD5 9038e4d57188ed0ab463fe0a20a18bcd
BLAKE2b-256 a89e0b2b1428e0846c5c68327bb5e8a15445b3fbe6745248a12e82f643883c81

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: pycft-0.0.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 537.3 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-0.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 11e3156cee420ad56d163d72f75806c181cc6bc18070370cc072c983d51ab8ae
MD5 0888a206cf1a28a053180ddbadd8ba41
BLAKE2b-256 ffa181cb9742c5dadeb92f293b9f4ef1b5aeca59c5cdb31a121f634bd5e12023

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e646505b7fad828ffc229613959b30c3c8590b57a238b7dc168e96849fbb5b3e
MD5 b0a32dfd3e856227451c7fd08d5f1d9f
BLAKE2b-256 0e19d43e40b74313bd043ae31cfb7c4a1dee8800438d68e1811c48a7ab2b7f24

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e283e8439ceaf8af236a36d6deee37b095dc4a6c63b8c44d3d65a7a28cc577e1
MD5 3ff314a79d41f690987c39f9aab37187
BLAKE2b-256 d1e10308bddaa05e352c5d588bec4bc6e0f6ef28859036c400b17367655ca88c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d73253679ec5b3e1a0a8340c2e82a1852b25c4b8bab2e6fd74474130c87da8db
MD5 61df1489bc6192b234df97e184f2736d
BLAKE2b-256 dc467a3ee0eeb8f30a2179adfc1879c964b8c6e564fca8b35ab77eb62a5abd6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36628a022c027952d7c18415e69f0455f20b648d68b5acdc692e4bf552042cc7
MD5 1fd0780c972f202c0d014f89b8609c30
BLAKE2b-256 bb677a53e4c03e8c2303b0d85cd1693185db21de292c5930d25eaf62e84b9f20

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3f589187cc3de7e98ddf378748c8925d602c849ec23745a34b08b1c936491b71
MD5 331ab038f778ee6eb5931d59db2e82bb
BLAKE2b-256 f8ece6b7ae6b7d288dada02d02074bf0a58720929cf308760276e74f01f72699

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89a48b46e72a23ffb7b3c2108f98dde402f20f8fdcfea6dff4b28090ea5eda18
MD5 e41e6472cfbb886f9ab06bcad6ede4e9
BLAKE2b-256 4d527aafac2fdfd2ae869341abdbfcc3de799c7ff92ed39616c6b5f7e86144cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40effbbdc983f2ddb20df13ea4642c87e370d5a744d86c4d36d7a468f03627e9
MD5 69a302084c4576191a88026a32ecd794
BLAKE2b-256 606d2cd903543704c446f8e906a5dd3ce8f615b862a84f37d819738a87d509de

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pycft-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 327799480cde46fd61c0141ed4e1cc8777d035d15f1ff03035fa7fedf67ea31f
MD5 9976e3b2d7e4567b2313d516dc517d6d
BLAKE2b-256 5bbaf169902862f3dbb1897edf2106614953c508137941e31dbe0fe52876b0ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycft-0.0.1-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