Skip to main content

Fast File Count: Recursively count files and directories very quickly

Project description

Fast File Count in Python

build PyPI version Python package downloads

This is a Python package to quickly count the number of files and directories in a given path. Optionally you can count recursively and include hidden files in the total.

This package is a wrapper around fast-file-count by Christopher Schultz . Credit for the initial version belongs to Christopher Schultz, I wrote the Python wrapper, converted the Windows code to use builtin functionality, and packaged it up. See the file src/c_count.c for the other contributors and see the commit history of this package on GitHub for my exact changes.

Installation

Installation can be done easily with pip:

$ pip install ffcount

Usage

There is a command line application called ffcount, which recursively counts files and directories:

$ ffcount

See ffcount -h for options.

The package can also be used as a Python library, using the ffcount function. This function returns a tuple (number_of_files, number_of_dirs) and it can be used as follows:

>>> from ffcount import ffcount

# count everything under the current path
>>> ffcount()
(521013, 43012)

# count without hidden files
>>> ffcount(hidden=False)
(234012, 12082)

# use a different path
>>> ffcount('/tmp')
(81, 10)

Note that ffcount counts links as files, even if they point to a directory. In some cases, this explains the discrepancy with other ways of counting.

To obtain the full function documentation, simply run:

>>> import ffcount
>>> help(ffcount)

License

The original C code by Christopher Schultz was licensed under the Apache License 2.0. This package is therefore licensed under this license as well.

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

ffcount-0.2.3.tar.gz (56.5 kB view details)

Uploaded Source

Built Distributions

ffcount-0.2.3-cp313-cp313-win_amd64.whl (26.0 kB view details)

Uploaded CPython 3.13Windows x86-64

ffcount-0.2.3-cp313-cp313-win32.whl (24.2 kB view details)

Uploaded CPython 3.13Windows x86

ffcount-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl (104.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

ffcount-0.2.3-cp313-cp313-musllinux_1_2_i686.whl (99.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

ffcount-0.2.3-cp313-cp313-musllinux_1_2_aarch64.whl (100.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ffcount-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (102.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

ffcount-0.2.3-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (104.3 kB view details)

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

ffcount-0.2.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (98.4 kB view details)

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

ffcount-0.2.3-cp313-cp313-macosx_11_0_arm64.whl (24.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ffcount-0.2.3-cp313-cp313-macosx_10_13_x86_64.whl (24.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

ffcount-0.2.3-cp313-cp313-macosx_10_13_universal2.whl (40.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

ffcount-0.2.3-cp312-cp312-win_amd64.whl (26.8 kB view details)

Uploaded CPython 3.12Windows x86-64

ffcount-0.2.3-cp312-cp312-win32.whl (24.8 kB view details)

Uploaded CPython 3.12Windows x86

ffcount-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl (108.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

ffcount-0.2.3-cp312-cp312-musllinux_1_2_i686.whl (104.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

ffcount-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl (105.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ffcount-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (107.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ffcount-0.2.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (109.5 kB view details)

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

ffcount-0.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (103.5 kB view details)

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

ffcount-0.2.3-cp312-cp312-macosx_11_0_arm64.whl (25.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ffcount-0.2.3-cp312-cp312-macosx_10_13_x86_64.whl (25.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

ffcount-0.2.3-cp312-cp312-macosx_10_13_universal2.whl (41.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

ffcount-0.2.3-cp311-cp311-win_amd64.whl (26.6 kB view details)

Uploaded CPython 3.11Windows x86-64

ffcount-0.2.3-cp311-cp311-win32.whl (24.6 kB view details)

Uploaded CPython 3.11Windows x86

ffcount-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl (105.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

ffcount-0.2.3-cp311-cp311-musllinux_1_2_i686.whl (100.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

ffcount-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl (101.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ffcount-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (102.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ffcount-0.2.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (104.1 kB view details)

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

ffcount-0.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (98.9 kB view details)

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

ffcount-0.2.3-cp311-cp311-macosx_11_0_arm64.whl (25.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ffcount-0.2.3-cp311-cp311-macosx_10_9_x86_64.whl (25.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

ffcount-0.2.3-cp311-cp311-macosx_10_9_universal2.whl (41.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

ffcount-0.2.3-cp310-cp310-win_amd64.whl (26.6 kB view details)

Uploaded CPython 3.10Windows x86-64

ffcount-0.2.3-cp310-cp310-win32.whl (24.8 kB view details)

Uploaded CPython 3.10Windows x86

ffcount-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl (94.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

ffcount-0.2.3-cp310-cp310-musllinux_1_2_i686.whl (93.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

ffcount-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl (93.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

ffcount-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (94.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ffcount-0.2.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (96.0 kB view details)

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

ffcount-0.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (92.4 kB view details)

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

ffcount-0.2.3-cp310-cp310-macosx_11_0_arm64.whl (25.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ffcount-0.2.3-cp310-cp310-macosx_10_9_x86_64.whl (25.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

ffcount-0.2.3-cp310-cp310-macosx_10_9_universal2.whl (41.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

ffcount-0.2.3-cp39-cp39-win_amd64.whl (26.6 kB view details)

Uploaded CPython 3.9Windows x86-64

ffcount-0.2.3-cp39-cp39-win32.whl (24.8 kB view details)

Uploaded CPython 3.9Windows x86

ffcount-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl (94.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

ffcount-0.2.3-cp39-cp39-musllinux_1_2_i686.whl (92.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

ffcount-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl (93.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

ffcount-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (94.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

ffcount-0.2.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (95.6 kB view details)

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

ffcount-0.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (92.1 kB view details)

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

ffcount-0.2.3-cp39-cp39-macosx_11_0_arm64.whl (25.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ffcount-0.2.3-cp39-cp39-macosx_10_9_x86_64.whl (25.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

ffcount-0.2.3-cp39-cp39-macosx_10_9_universal2.whl (41.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

ffcount-0.2.3-cp38-cp38-win_amd64.whl (26.6 kB view details)

Uploaded CPython 3.8Windows x86-64

ffcount-0.2.3-cp38-cp38-win32.whl (24.7 kB view details)

Uploaded CPython 3.8Windows x86

ffcount-0.2.3-cp38-cp38-musllinux_1_2_x86_64.whl (93.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

ffcount-0.2.3-cp38-cp38-musllinux_1_2_i686.whl (92.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

ffcount-0.2.3-cp38-cp38-musllinux_1_2_aarch64.whl (92.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

ffcount-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (93.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

ffcount-0.2.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (94.9 kB view details)

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

ffcount-0.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (91.6 kB view details)

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

ffcount-0.2.3-cp38-cp38-macosx_11_0_arm64.whl (25.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

ffcount-0.2.3-cp38-cp38-macosx_10_9_x86_64.whl (25.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

ffcount-0.2.3-cp38-cp38-macosx_10_9_universal2.whl (41.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file ffcount-0.2.3.tar.gz.

File metadata

  • Download URL: ffcount-0.2.3.tar.gz
  • Upload date:
  • Size: 56.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for ffcount-0.2.3.tar.gz
Algorithm Hash digest
SHA256 a03ace3a30c6eb6a5f1b9878138dde19f83d922a5f9a1b3d5e8793cfae58e15b
MD5 ea527e40e810d86dacdea047280474a5
BLAKE2b-256 9624e79597bffe1f222b9897473ddf0299c3b56d283abe5afb3531b1c44c4498

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3.tar.gz:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ffcount-0.2.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 26.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for ffcount-0.2.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6d3e094619599b53b4ba3243338a8f1d66a89025ba377e9ee2e35d89eb274df9
MD5 ca35826c21709d75ff1690a724bd3f93
BLAKE2b-256 32e1acfd0daa8b44717614943a106c61f0d1a40775cd59742d69473998d86fe3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp313-cp313-win_amd64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: ffcount-0.2.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 24.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for ffcount-0.2.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 28af9c8f7f33be35316ae8b1c195f5e668a8d36e01cb1d25e724a3869b979ca8
MD5 6da2305e593233b35457a92340777eee
BLAKE2b-256 170c57eea6f132cb02d051fec8ed9b077025936c4de371dbc78e107db469d422

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp313-cp313-win32.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a7cbe58cf77d0757bf204042fd08c09278f17d247e36bb74316d5374deedee9
MD5 741dbd5cd179a29bbe446616226f4fc1
BLAKE2b-256 a74c96913401e475e832aa98669f5e824aca64d552921001a810e6f3e38a44ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ad72650e754fbbc23411d7650abdfb978e565ff6dc18fac35927da859a8374e
MD5 df29ff3da16c35723d273acbe8bcab3e
BLAKE2b-256 263990a08caa3015cda502b477ca56555c52ce958b80630ae3a598bbfbe42a88

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85e4b7700aed2cb122d7a33cde5c16baa7889d3de1a93b8bfdf0ebc933e6a5b9
MD5 8a509aa5f4ffd2d54e354d3bc887243d
BLAKE2b-256 9d1e30eae9e11009fa97e2387c1507d5eab27df4a08d61404cc4b25a640d2566

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1354e8656a629fd77f2132885ae8f32be9b377d0b8f86bc224a3cb308abc27ac
MD5 880757eb47b35ea19d6d69a3e0c77e31
BLAKE2b-256 4bba863952fc53fd308c976f48caa1b4eb0f8dd26f6c10146bbfa47a6c2dbdd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-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 ffcount-0.2.3-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 919f67597617962c935540ffec27aed61603e0c71646e6a166469f134f8dbd52
MD5 e0f2ff9c27c15335aa195f5d4a93413a
BLAKE2b-256 221c3ae1a44d6fea9da8d49217aba09d1c0bc8154adac2e44be350ecd710a85b

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b657cebb3d6beeb4bb16827594812a288e12c10f940f550e69e9158c9aa2c773
MD5 04d97239df133b520eabf5faea8532a7
BLAKE2b-256 2e4a4ee4706c76bba4a8a397d679675d28f3e7e3a246793642e2a4cb69ad28c6

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da9001305e7248c022edf0d6d61ca896c5ac93d3a8b85533386cee40c9b12509
MD5 63321c1609dbe11872341fe994a90d4a
BLAKE2b-256 e922cfefc63d0e0926ffe73ee9696d35e8671faa0b1414fc4c25b2e36f679fbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8e081f2e4c463cb15b3aadf1a530fa31f54bc9c852182338ba1cedcae9f90614
MD5 ba0abcfb98bd5c9546b85bc4ae64945b
BLAKE2b-256 4dc67ae319a4e4d4f6ffe4373b0db7378a95b38950f7e4d60a93ab8878054af4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 58b535a1eca22125a6f9a6bee85bb12711a170a85e48443002e560bf8dc98a9a
MD5 f8c998b9e06229a46c5633cf84f3f504
BLAKE2b-256 e3fe99ac55b1cb605c1682c2437ab737b7f91068b804c54f972a4b25f43446b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ffcount-0.2.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 26.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for ffcount-0.2.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 15590dcba2592712def62dcbb5118e125be2bd79d86855a56da09ca1edc965b4
MD5 d342f4ce96e231f1b1bd71ce0b9d2b31
BLAKE2b-256 2647cf718783ae54b19ddd8a76b9ab5330836cce2405554b53456259e5976453

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp312-cp312-win_amd64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: ffcount-0.2.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 24.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for ffcount-0.2.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 503063e84b322d757facc49c8fc646109e76fef935c099862ba032f97dfb3d47
MD5 758d0c669f51284ea8ac72b9b90e8c5a
BLAKE2b-256 a8592f00fd80ae63b6899108867dbceaf5e67759175b11a8e38bfe849688c569

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp312-cp312-win32.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86d0caea05017a98b223118e9f7fa0fd06f29a59b84dc0373a60c62e5143315f
MD5 8a4ad3cbffb6912353dfa4ae1432b8b6
BLAKE2b-256 2ad81ae60c9d3a972cf6c9567298e9e0d7a7a833766b7bfd40e0e0b3064a4602

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d60a965a5fd1f09b387cc20597ae317513f437927443633e37a994aafdde43ed
MD5 d51d97f0636cf05df5d867c638000f92
BLAKE2b-256 bc838f33eb2e1259122f9ff9e703e53540927b48f76c2b310bfc2a13be797729

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8b0a0c044ab26084b7902f472f8e64a1ad3c59355862619f30a8fb9e1dd592b
MD5 b2d7d00e42bef06b46a08d1ccefcb4df
BLAKE2b-256 1c5ca395265279bc5dd47aed75c5250ab9e5aaef467ed65b2998345a60561616

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2407b38a7b0ee11840d99818cd32be432c4535e3e34dadc69e4f9d92078bac33
MD5 726487d5d6464392925f7e392148b911
BLAKE2b-256 0eca06571e7071c8f30cb9f724fac3a08f889db5a666fdaf640739f2cfb33275

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-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 ffcount-0.2.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de2ed92b578fe513bf002ae41613160edec6c7a887ba6791183c9638791f258d
MD5 d69b7283a40a0fcd7cfe5c1c69baf502
BLAKE2b-256 5bef3430159ae49d66b12a974a5bfeeba33fa78bbb2072659ac099abb48446d4

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 233a905fcaf373e12b7b0eb91bda969110be42f9d6a8c2a61d8758d2713301c8
MD5 2470b7bd608d31a5ba4e345884e34a66
BLAKE2b-256 2a76ac7ff865bb2723636ea372211363ec09201fca0e21a42b03bc21e6ddf91f

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bd76dba5903903f3a0013cc73c5e71ec3b7fce8c462e7ffed9db6b276b1a93c
MD5 ae4f4c2e3b156dc93c9b5f5bf34f4e96
BLAKE2b-256 2b4ab9a7af41fa552b62d79332d94cbd9ad707690aa609b4c730f8a083789875

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 21667c77b16fd42a6a7e0aa925a92849f8d50ba6ed4bd70270ff60b1aa17b37b
MD5 5c8b37e37ff1127916db0d85d59493c4
BLAKE2b-256 a56a9b04779a32c2308b118493b0ec8683f6582e633427c9e929fb37c4ad5465

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 44efad1f52003608d92355043c3225657f102084e47eb60d6c0cf7c1ccebcf99
MD5 adbbbf9dbc5875d076208945ba90d69c
BLAKE2b-256 85e4dde2a1123c7ae5684d8db69b2e6d5acfe1ea4878da7055a92e02c7544d37

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ffcount-0.2.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 26.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for ffcount-0.2.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f457e1d2ecb2dfb1b3a324fb9ec50c9baf6330d703671f2e7efa786987367e67
MD5 4ef12662e6ab5ce78d75e81d50657b05
BLAKE2b-256 716bafa49b91810d48116e80a8f9f0c9475a8bbcb59c0a1405e8d9a770fdfdd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp311-cp311-win_amd64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: ffcount-0.2.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 24.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for ffcount-0.2.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cd43a4b612bbd1ff9da86a07df8d928caef1d4b985b5b467b435136cae49425a
MD5 515b7d0a4e967f1b47ade10508429b74
BLAKE2b-256 7f1e35502872f841c3f0321b80adbea0d59b91ffaf4eb1a6b1cf27ab1e3a7ebd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp311-cp311-win32.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7efd15732a2b7de0775e117888bc31645fa95aee0baa5510966d26aaa3eb7182
MD5 6536de359337fb1a2040ba86c52140fb
BLAKE2b-256 702426e2682b2cc574c28612c18652298d8ffd0fb7800fa226df09fd1a735678

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b818b6b0785b28f53149dee06c5832e533a5b01dc25256f12434f4db0e70be7
MD5 ce2bdb3a3b77ec8731f2759411c42401
BLAKE2b-256 62ca9c33401dd8036499c1c7ed7309cd380f12ef10eb18afcc1b810648740e45

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5523e50c687eabebe1fdfea94da5304b4d027f0d659c32eb0470d70940a75dfa
MD5 9488b4f517406b89a435063fab8d21eb
BLAKE2b-256 9d94e2a658980a51d0399de12c80d25cd8c7d8082c549ae4a6df6fe3086c2a2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f9907a295f6d1963db3ab847f8f0f7bf3f91bc7d7bc8f35b29a73472de52737
MD5 1f3db5b7cf865368770acc5317dc5c9b
BLAKE2b-256 6e48260bf79c7df60ddf48893848a2caf271f1bf94f4abb3f6e1909afb366ff9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-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 ffcount-0.2.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fe9032af67772774c3e910d07333ed5d9c8ab23c44842cce865bda1f9eafba2
MD5 9dc616416a1249436e08922cee484be2
BLAKE2b-256 53b8e75d55d01f0643c7ceb387fc42215da5e0a370669488398d5edf4a5e3bca

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b7ed8a4b350c2f7a6e2d6d945ffc08e4aceed529cec26a9576bb77a2817e21d9
MD5 8ebf6aa037d563440340922130af9e0b
BLAKE2b-256 7a0a9451df8b3636896fa151df9dbcda0e5902595b48756ffb5bf439efdf3ffd

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55b8dd66cc52cae432c63e253ecb32005b37fdf3c08d8259179ad094313cfae0
MD5 e4df25264a43ab49a0da97781b07b21a
BLAKE2b-256 6de33a5c9d584a6e03ac28c4c3c3bb0abced9cec082e53e901b084bfc01fd0a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f7a6ab0ce06a42150e5cb52f491dd4a20e3ee0ee22a758a3f9e3b71e52a7404c
MD5 7acdc5504e5d30b0bdd342c7fee9d0ae
BLAKE2b-256 a7481a81f4cfdbefc89d2002029a3955ba96b2517f5c3c85d9711e05e18f78f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9c325701d70154e940d97f70dba78bb6dcfd8f0363c5f85595ead32e7674d906
MD5 3e8b983af50ae10f1c3a4e681d471e2f
BLAKE2b-256 88dee7ba272c75e610dfc897a1b74c67ef65c497340365922562c2ae745a3506

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ffcount-0.2.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 26.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for ffcount-0.2.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 00a02b8fe62216a1f2c93c865bba205f2943726836dcc31df07dd4ada76d7b92
MD5 b5b39fc088077d2d3d7986d72194ee88
BLAKE2b-256 9d93cce072b37aaa45ea2980fa3b27bcfb3099339d87bffe907e61626de838c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp310-cp310-win_amd64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: ffcount-0.2.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 24.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for ffcount-0.2.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3179f2c2d20f097419bd4634a9beef74f43f9bffd24b2008a1ee3f92527633aa
MD5 a832fd5c1a1fae09cbb73b3416935fd5
BLAKE2b-256 bc1c0e3d14f1650dd145c7f92e91b310c6399dd99be37a88a5a056b1d548e3c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp310-cp310-win32.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 091b6fac83dc91e60169c8ad3f0dd364743821169578772e92a9b2c9ec53c17a
MD5 ffe3a5bde9c87d104691da47db8ab5fd
BLAKE2b-256 0647c8aa64fbbaea35e60bf8c1c4ea6f8a62be0540de3a1902c878b81662a521

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ffd6f7e34eb7445ab526e823c2c205b0cbe56af77126a1be5de550079f84a01a
MD5 660c2c8312835333f81fd2a02c82e037
BLAKE2b-256 5582eddaba0a3c47e170eb6c50412a408f79508279b63e632b24f541c08342af

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e6ac46b686aa5003b5c4c95eac415d2c2721ad88ced0cc83376b87ea03ee703e
MD5 e6c3f5fc6cc6d2d6aaf97e53cf46f0d1
BLAKE2b-256 05ee95c345d40447a21925f012f6f79dcfcba8bae476a27751fbb8626ded35db

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 350e0dbdb61b2de62abdb5c12e44b2e133d1e4028f39195cfe4b18cb1c6887ba
MD5 1a4c1ebb0a18941b1f4dee9cea395f9c
BLAKE2b-256 a77724c862ecdf599c6e2420e70fe49c47929d76e81e30aa10ebd6df5e06d508

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-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 ffcount-0.2.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37b815dc93faef10bca2bc0813976a5246b5e698f8e18e5d78ab93c9174f4d88
MD5 1d62da9c1dbd2739426442b955571107
BLAKE2b-256 9b734e6290195406c682082f5d53f4223d722471a5bbf9cf1429de3d3e04e1ba

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 97917e8cac623d0833a95a1fb8740beb6020da4deb20635cd5376e90716450a5
MD5 2d25d1ac8756355bef2b55cef357c62a
BLAKE2b-256 cccf42b3e2a82d2c3922d0eea3c8263238cf9e393d257dffdbd500746ec73aae

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afd7b9faebdfcf70988b60e54581779df894dda9fd2936f5b60bfc1aae67ac5b
MD5 39a3ba4e44e23a2562fdfc8d0d808496
BLAKE2b-256 e3eadee568747c19ca522782fdceb556e7b2a33356a6f19fc4ce2264d0e69814

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 919560eb3143e1c34c2f15782d1d134b1eea81bbd14cc612732a5c54ca21467b
MD5 ae629558beba4311959dd2440aae8a3d
BLAKE2b-256 7836a99267efc31bb8c724e62e4609612731c2d963858bba69c4d0dedfab5ce3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 856512f99d7c551b1e778f332bc02f873b0ed96ee69dfacb2fe34c0ccd5cc1e0
MD5 958716b26d24242267b964d0b86f75fc
BLAKE2b-256 4fceead3d60ef93ab9c28915310026d95abb694cd9463d7a698884787244836b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: ffcount-0.2.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 26.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for ffcount-0.2.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7998ca478f185c797ed9fb8bd02adef723cb1617a6a7558e0092743e40237aa4
MD5 07e8147bb42187adeb8ce94b9b86b6ac
BLAKE2b-256 68b223649b45d967c8a0f5e58f9a3ce981e37d9f59c608842e5b38ab00631804

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp39-cp39-win_amd64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: ffcount-0.2.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 24.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for ffcount-0.2.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a51d41a3ef56ae39c37b06441f273af20e400fd81fc98408fda83ec5e343e213
MD5 b2eab3c6299ad50938336ee29319453e
BLAKE2b-256 be86a47149e12b4c57860625e2f4df340b39e654b6170b27733e141dde94baed

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp39-cp39-win32.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07e007f9377543cbb07743111817333d451f14c51301343245dbc73b0bc55c9f
MD5 28869878f08c8c175066ffd89222d811
BLAKE2b-256 d956c04fb541ecc54b4e12fde1e357b9e90e2b0634b68620df6e2b9c490efedc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4bb679effb88a66e99a62a897caccd524a43bcb4fc80d370bfea967a0917e799
MD5 01adf370bf3cf897e32befa5fa23a142
BLAKE2b-256 de417de678436aa961e5b60b64ea959386f1cc2bd6c8b822c452cbb9d2a43e8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e10d13bc060fa304332c25571a613dd7af8e514fd67d3cf38eb0ab4ca2326da9
MD5 7bf7a858fe0010eddb7d948ac577fd9e
BLAKE2b-256 0a4f13d736435496338aecf26dcf9a2b423024d93fe7225814f73e7c2a123b60

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bbbd073bab126dc0429298c9b9036f62679c6cf5db4dd0617f32ab2647a43c2e
MD5 67ab24537cc4369de90c1e0efed64cfe
BLAKE2b-256 1aa9f933478d988e82a295f388df59c61abfaf96324235471f9d853914d98013

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-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 ffcount-0.2.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3d24be1529d6750071a5f961ea9acc4864a9591227d2720c94d841daf27963d
MD5 4018aaec66d2c5c538c59c97cbbba1ae
BLAKE2b-256 6363ef2f7e468aae8d7d8057ae75d76b3d5eb9c2516730a856562b55a592ad48

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d9cf44537cf4683959ae7ca34656760f1a319cdf6e679215a9b16256c97b10b4
MD5 669d116b417f97973d5586ff273af772
BLAKE2b-256 91fa7f0389e37195798001f0e8a874aea6ccbb736b2c88b29e00efd3d0007bba

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1e5bc7d4e71f8ca6944973368071d314123b80dbb5430003fe243cf47fae1ac
MD5 b30883af62fd8236422f6e2ecf14194e
BLAKE2b-256 3109b0194da4cb816fdfc381d1a42a01caa6428e0bb09375bf2d6096ce9da970

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 09cf32686fdf2869eb232163500b9cddc13ae99a6c9f9478acce428aae7a3b16
MD5 9c68388a71ac12fa21f56c9aeeaa84d4
BLAKE2b-256 482068b3c2530aa164d662f7399246fa43f77e043ac64713bdfb36928ae80a7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a13c4513f5d41dd03667fc4aeaee57e8e2b0d52e6abafbc3cbb98f90c4e51a51
MD5 10872c4c33193a16896aadba79b31b86
BLAKE2b-256 f60f9ca57ebdf5ac7838fb762747105bf200e717938aad8c22720c32969575c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: ffcount-0.2.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 26.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for ffcount-0.2.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 69de7de03d5ece8bce42b71b8e5da4f28222424a38c6d96d81fbfbaacbd05bde
MD5 7f6ab54809399a67d5ea7b0998c543d0
BLAKE2b-256 a903c091f43b838b673f39902ed619606e41742471c8de238cbf46202b17344d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp38-cp38-win_amd64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp38-cp38-win32.whl.

File metadata

  • Download URL: ffcount-0.2.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 24.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for ffcount-0.2.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 60ddd8b43178a7fb754525e0c4050ec92466ec704a451b630b04511c2e22c592
MD5 dd0fadd693a77992e96249ecaa65cbe9
BLAKE2b-256 329d9d6be8508bd4b14b201159e6813bd6d3aa4e7921e6282e1cec2cd398b233

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp38-cp38-win32.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e30be8c904d0109ae106699151fd5694c0c51acaf65942228811b7b78cbd8fa5
MD5 0ada1007da59671262393ddce757cc63
BLAKE2b-256 77a678206156a3b015137c9ca9eba6d88a1fb293aa5d1c2bc20560b13b778239

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b2f94d10652200cab5c07cfec77f31082b01c8f4ef5eea94d1beef1e7db6759b
MD5 34d58bc8be1ceb36766af47e7a80a465
BLAKE2b-256 3cee12f37b0f9d9b4c4f2502d02d579ff24517dc184f82729284e5aeaad71958

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8fafb75a3ada4111e47923e602916f9b3d113c6f2fb359e9bdc352f987f77d1
MD5 8241f43db9f3605d37d6bede8347c252
BLAKE2b-256 930e466f2c881c43a735e4a91d4c0bded6baf09f265d4a4e4cba29bd5d982786

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 742aa1bf5b13170580e0ecea74e08ad6babf03df59ee3914a328fff09d0aae94
MD5 aef737ea238030f373749c5759feb9bf
BLAKE2b-256 218753b0dd17a653d108565721a1364efa730e59a0af9674a144be4d5c1e5570

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-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 ffcount-0.2.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2ec2f1b2e666149308c49b4239687363fc09429dc9de7d9aa902ff4001c42ee
MD5 8ac363b7b4ecc0bfa05c6dbffdedc5da
BLAKE2b-256 5a116797a53d3a059cac25d9062b12c767b91a98a35c64e0fe86cbc9d3e94dcc

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9abdfb117b79840bc2de991269283ae87f6bb4bc604b2c128136a4552c8a6cbc
MD5 422a14aeb6d6e7d63b9738508f61c6ee
BLAKE2b-256 7d0c0265d9f3bb5433d454d4d753f2e5ce2f86468a6812bce38add84eb0f8b77

See more details on using hashes here.

Provenance

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

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e39d4d2ad62710daa4b0e622e7fc04b8aabac052f2b209bf78d8437fc671bf8
MD5 0cbe1c2fd0155a7ee5b83588cc16fdb8
BLAKE2b-256 54b54a419b3fb9dd4675fcf8f5c176495d69bb069ff1e5d1e1f679c2979fe979

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f3e09748c3decc7fa2266ef642ae5cc338f0a35def22b6c999ee507b56c3d731
MD5 79d0ecaeb649a2976cd8824b22fa44d6
BLAKE2b-256 3443efb83908bb7ba82fc9249626be690723f12ecc91cdf26a0a1ce8897a0307

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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

File details

Details for the file ffcount-0.2.3-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for ffcount-0.2.3-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a640c0ca37e89dab38166588b4c4b8e92b4e5ad32bc8e0ccae424b0b9d9d31f2
MD5 a191b6c152f9df328ed2d755c00ba560
BLAKE2b-256 294bec865defa6927a27efa025765d63ec4f9673d4fce4e444f7642b33408052

See more details on using hashes here.

Provenance

The following attestation bundles were made for ffcount-0.2.3-cp38-cp38-macosx_10_9_universal2.whl:

Publisher: deploy.yml on GjjvdBurg/ffcount

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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page