Skip to main content

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.

Release files for ffcount 0.2.3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for ffcount 0.2.3
File Size Uploaded
ffcount-0.2.3.tar.gz 56.5 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for ffcount 0.2.3
File
ffcount-0.2.3-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
ffcount-0.2.3-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
ffcount-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
ffcount-0.2.3-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
ffcount-0.2.3-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
ffcount-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
ffcount-0.2.3-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.5+ x86-64, Linux glibc 2.17+ x86-64 Details
ffcount-0.2.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
ffcount-0.2.3-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
ffcount-0.2.3-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
ffcount-0.2.3-cp313-cp313-macosx_10_13_universal2.whl CPython 3.13 CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64) Details
ffcount-0.2.3-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
ffcount-0.2.3-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
ffcount-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
ffcount-0.2.3-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
ffcount-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
ffcount-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
ffcount-0.2.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-64, Linux glibc 2.17+ x86-64 Details
ffcount-0.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
ffcount-0.2.3-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
ffcount-0.2.3-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
ffcount-0.2.3-cp312-cp312-macosx_10_13_universal2.whl CPython 3.12 CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64) Details
ffcount-0.2.3-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
ffcount-0.2.3-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
ffcount-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
ffcount-0.2.3-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
ffcount-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
ffcount-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
ffcount-0.2.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
ffcount-0.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
ffcount-0.2.3-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
ffcount-0.2.3-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
ffcount-0.2.3-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
ffcount-0.2.3-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
ffcount-0.2.3-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
ffcount-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
ffcount-0.2.3-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
ffcount-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
ffcount-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
ffcount-0.2.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
ffcount-0.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
ffcount-0.2.3-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
ffcount-0.2.3-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
ffcount-0.2.3-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
ffcount-0.2.3-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
ffcount-0.2.3-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
ffcount-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
ffcount-0.2.3-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
ffcount-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
ffcount-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
ffcount-0.2.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64, Linux glibc 2.17+ x86-64 Details
ffcount-0.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
ffcount-0.2.3-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
ffcount-0.2.3-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
ffcount-0.2.3-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
ffcount-0.2.3-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
ffcount-0.2.3-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
ffcount-0.2.3-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
ffcount-0.2.3-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
ffcount-0.2.3-cp38-cp38-musllinux_1_2_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARM64 Details
ffcount-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
ffcount-0.2.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
ffcount-0.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
ffcount-0.2.3-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
ffcount-0.2.3-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
ffcount-0.2.3-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details

Total release size: 4.5 MB

Release files / ffcount-0.2.3.tar.gz

Download URL ffcount-0.2.3.tar.gz
Size 56.5 kB
Tags Source
SHA-256 checksum
How to use checksums
a03ace3a30c6eb6a5f1b9878138dde19f83d922a5f9a1b3d5e8793cfae58e15b
BLAKE2b-256 checksum
How to use checksums
9624e79597bffe1f222b9897473ddf0299c3b56d283abe5afb3531b1c44c4498
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp313-cp313-win_amd64.whl

Download URL ffcount-0.2.3-cp313-cp313-win_amd64.whl
Size 26.0 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
6d3e094619599b53b4ba3243338a8f1d66a89025ba377e9ee2e35d89eb274df9
BLAKE2b-256 checksum
How to use checksums
32e1acfd0daa8b44717614943a106c61f0d1a40775cd59742d69473998d86fe3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp313-cp313-win32.whl

Download URL ffcount-0.2.3-cp313-cp313-win32.whl
Size 24.2 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
28af9c8f7f33be35316ae8b1c195f5e668a8d36e01cb1d25e724a3869b979ca8
BLAKE2b-256 checksum
How to use checksums
170c57eea6f132cb02d051fec8ed9b077025936c4de371dbc78e107db469d422
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL ffcount-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl
Size 104.1 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0a7cbe58cf77d0757bf204042fd08c09278f17d247e36bb74316d5374deedee9
BLAKE2b-256 checksum
How to use checksums
a74c96913401e475e832aa98669f5e824aca64d552921001a810e6f3e38a44ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp313-cp313-musllinux_1_2_i686.whl

Download URL ffcount-0.2.3-cp313-cp313-musllinux_1_2_i686.whl
Size 99.3 kB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
0ad72650e754fbbc23411d7650abdfb978e565ff6dc18fac35927da859a8374e
BLAKE2b-256 checksum
How to use checksums
263990a08caa3015cda502b477ca56555c52ce958b80630ae3a598bbfbe42a88
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL ffcount-0.2.3-cp313-cp313-musllinux_1_2_aarch64.whl
Size 100.8 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
85e4b7700aed2cb122d7a33cde5c16baa7889d3de1a93b8bfdf0ebc933e6a5b9
BLAKE2b-256 checksum
How to use checksums
9d1e30eae9e11009fa97e2387c1507d5eab27df4a08d61404cc4b25a640d2566
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL ffcount-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 102.6 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
1354e8656a629fd77f2132885ae8f32be9b377d0b8f86bc224a3cb308abc27ac
BLAKE2b-256 checksum
How to use checksums
4bba863952fc53fd308c976f48caa1b4eb0f8dd26f6c10146bbfa47a6c2dbdd6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL ffcount-0.2.3-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 104.3 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
919f67597617962c935540ffec27aed61603e0c71646e6a166469f134f8dbd52
BLAKE2b-256 checksum
How to use checksums
221c3ae1a44d6fea9da8d49217aba09d1c0bc8154adac2e44be350ecd710a85b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL ffcount-0.2.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 98.4 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
b657cebb3d6beeb4bb16827594812a288e12c10f940f550e69e9158c9aa2c773
BLAKE2b-256 checksum
How to use checksums
2e4a4ee4706c76bba4a8a397d679675d28f3e7e3a246793642e2a4cb69ad28c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp313-cp313-macosx_11_0_arm64.whl

Download URL ffcount-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
Size 24.9 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
da9001305e7248c022edf0d6d61ca896c5ac93d3a8b85533386cee40c9b12509
BLAKE2b-256 checksum
How to use checksums
e922cfefc63d0e0926ffe73ee9696d35e8671faa0b1414fc4c25b2e36f679fbd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp313-cp313-macosx_10_13_x86_64.whl

Download URL ffcount-0.2.3-cp313-cp313-macosx_10_13_x86_64.whl
Size 24.8 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
8e081f2e4c463cb15b3aadf1a530fa31f54bc9c852182338ba1cedcae9f90614
BLAKE2b-256 checksum
How to use checksums
4dc67ae319a4e4d4f6ffe4373b0db7378a95b38950f7e4d60a93ab8878054af4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp313-cp313-macosx_10_13_universal2.whl

Download URL ffcount-0.2.3-cp313-cp313-macosx_10_13_universal2.whl
Size 40.4 kB
Tags CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
58b535a1eca22125a6f9a6bee85bb12711a170a85e48443002e560bf8dc98a9a
BLAKE2b-256 checksum
How to use checksums
e3fe99ac55b1cb605c1682c2437ab737b7f91068b804c54f972a4b25f43446b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp312-cp312-win_amd64.whl

Download URL ffcount-0.2.3-cp312-cp312-win_amd64.whl
Size 26.8 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
15590dcba2592712def62dcbb5118e125be2bd79d86855a56da09ca1edc965b4
BLAKE2b-256 checksum
How to use checksums
2647cf718783ae54b19ddd8a76b9ab5330836cce2405554b53456259e5976453
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp312-cp312-win32.whl

Download URL ffcount-0.2.3-cp312-cp312-win32.whl
Size 24.8 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
503063e84b322d757facc49c8fc646109e76fef935c099862ba032f97dfb3d47
BLAKE2b-256 checksum
How to use checksums
a8592f00fd80ae63b6899108867dbceaf5e67759175b11a8e38bfe849688c569
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL ffcount-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl
Size 108.7 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
86d0caea05017a98b223118e9f7fa0fd06f29a59b84dc0373a60c62e5143315f
BLAKE2b-256 checksum
How to use checksums
2ad81ae60c9d3a972cf6c9567298e9e0d7a7a833766b7bfd40e0e0b3064a4602
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp312-cp312-musllinux_1_2_i686.whl

Download URL ffcount-0.2.3-cp312-cp312-musllinux_1_2_i686.whl
Size 104.3 kB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
d60a965a5fd1f09b387cc20597ae317513f437927443633e37a994aafdde43ed
BLAKE2b-256 checksum
How to use checksums
bc838f33eb2e1259122f9ff9e703e53540927b48f76c2b310bfc2a13be797729
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL ffcount-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl
Size 105.4 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
a8b0a0c044ab26084b7902f472f8e64a1ad3c59355862619f30a8fb9e1dd592b
BLAKE2b-256 checksum
How to use checksums
1c5ca395265279bc5dd47aed75c5250ab9e5aaef467ed65b2998345a60561616
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL ffcount-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 107.4 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
2407b38a7b0ee11840d99818cd32be432c4535e3e34dadc69e4f9d92078bac33
BLAKE2b-256 checksum
How to use checksums
0eca06571e7071c8f30cb9f724fac3a08f889db5a666fdaf640739f2cfb33275
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL ffcount-0.2.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 109.5 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
de2ed92b578fe513bf002ae41613160edec6c7a887ba6791183c9638791f258d
BLAKE2b-256 checksum
How to use checksums
5bef3430159ae49d66b12a974a5bfeeba33fa78bbb2072659ac099abb48446d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL ffcount-0.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 103.5 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
233a905fcaf373e12b7b0eb91bda969110be42f9d6a8c2a61d8758d2713301c8
BLAKE2b-256 checksum
How to use checksums
2a76ac7ff865bb2723636ea372211363ec09201fca0e21a42b03bc21e6ddf91f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp312-cp312-macosx_11_0_arm64.whl

Download URL ffcount-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Size 25.5 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9bd76dba5903903f3a0013cc73c5e71ec3b7fce8c462e7ffed9db6b276b1a93c
BLAKE2b-256 checksum
How to use checksums
2b4ab9a7af41fa552b62d79332d94cbd9ad707690aa609b4c730f8a083789875
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp312-cp312-macosx_10_13_x86_64.whl

Download URL ffcount-0.2.3-cp312-cp312-macosx_10_13_x86_64.whl
Size 25.4 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
21667c77b16fd42a6a7e0aa925a92849f8d50ba6ed4bd70270ff60b1aa17b37b
BLAKE2b-256 checksum
How to use checksums
a56a9b04779a32c2308b118493b0ec8683f6582e633427c9e929fb37c4ad5465
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp312-cp312-macosx_10_13_universal2.whl

Download URL ffcount-0.2.3-cp312-cp312-macosx_10_13_universal2.whl
Size 41.7 kB
Tags CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
44efad1f52003608d92355043c3225657f102084e47eb60d6c0cf7c1ccebcf99
BLAKE2b-256 checksum
How to use checksums
85e4dde2a1123c7ae5684d8db69b2e6d5acfe1ea4878da7055a92e02c7544d37
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp311-cp311-win_amd64.whl

Download URL ffcount-0.2.3-cp311-cp311-win_amd64.whl
Size 26.6 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
f457e1d2ecb2dfb1b3a324fb9ec50c9baf6330d703671f2e7efa786987367e67
BLAKE2b-256 checksum
How to use checksums
716bafa49b91810d48116e80a8f9f0c9475a8bbcb59c0a1405e8d9a770fdfdd4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp311-cp311-win32.whl

Download URL ffcount-0.2.3-cp311-cp311-win32.whl
Size 24.6 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
cd43a4b612bbd1ff9da86a07df8d928caef1d4b985b5b467b435136cae49425a
BLAKE2b-256 checksum
How to use checksums
7f1e35502872f841c3f0321b80adbea0d59b91ffaf4eb1a6b1cf27ab1e3a7ebd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL ffcount-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl
Size 105.0 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7efd15732a2b7de0775e117888bc31645fa95aee0baa5510966d26aaa3eb7182
BLAKE2b-256 checksum
How to use checksums
702426e2682b2cc574c28612c18652298d8ffd0fb7800fa226df09fd1a735678
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp311-cp311-musllinux_1_2_i686.whl

Download URL ffcount-0.2.3-cp311-cp311-musllinux_1_2_i686.whl
Size 100.8 kB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
7b818b6b0785b28f53149dee06c5832e533a5b01dc25256f12434f4db0e70be7
BLAKE2b-256 checksum
How to use checksums
62ca9c33401dd8036499c1c7ed7309cd380f12ef10eb18afcc1b810648740e45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL ffcount-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl
Size 101.5 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
5523e50c687eabebe1fdfea94da5304b4d027f0d659c32eb0470d70940a75dfa
BLAKE2b-256 checksum
How to use checksums
9d94e2a658980a51d0399de12c80d25cd8c7d8082c549ae4a6df6fe3086c2a2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL ffcount-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 102.7 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5f9907a295f6d1963db3ab847f8f0f7bf3f91bc7d7bc8f35b29a73472de52737
BLAKE2b-256 checksum
How to use checksums
6e48260bf79c7df60ddf48893848a2caf271f1bf94f4abb3f6e1909afb366ff9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL ffcount-0.2.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 104.1 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
3fe9032af67772774c3e910d07333ed5d9c8ab23c44842cce865bda1f9eafba2
BLAKE2b-256 checksum
How to use checksums
53b8e75d55d01f0643c7ceb387fc42215da5e0a370669488398d5edf4a5e3bca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL ffcount-0.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 98.9 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
b7ed8a4b350c2f7a6e2d6d945ffc08e4aceed529cec26a9576bb77a2817e21d9
BLAKE2b-256 checksum
How to use checksums
7a0a9451df8b3636896fa151df9dbcda0e5902595b48756ffb5bf439efdf3ffd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp311-cp311-macosx_11_0_arm64.whl

Download URL ffcount-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Size 25.4 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
55b8dd66cc52cae432c63e253ecb32005b37fdf3c08d8259179ad094313cfae0
BLAKE2b-256 checksum
How to use checksums
6de33a5c9d584a6e03ac28c4c3c3bb0abced9cec082e53e901b084bfc01fd0a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp311-cp311-macosx_10_9_x86_64.whl

Download URL ffcount-0.2.3-cp311-cp311-macosx_10_9_x86_64.whl
Size 25.2 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
f7a6ab0ce06a42150e5cb52f491dd4a20e3ee0ee22a758a3f9e3b71e52a7404c
BLAKE2b-256 checksum
How to use checksums
a7481a81f4cfdbefc89d2002029a3955ba96b2517f5c3c85d9711e05e18f78f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp311-cp311-macosx_10_9_universal2.whl

Download URL ffcount-0.2.3-cp311-cp311-macosx_10_9_universal2.whl
Size 41.4 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
9c325701d70154e940d97f70dba78bb6dcfd8f0363c5f85595ead32e7674d906
BLAKE2b-256 checksum
How to use checksums
88dee7ba272c75e610dfc897a1b74c67ef65c497340365922562c2ae745a3506
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp310-cp310-win_amd64.whl

Download URL ffcount-0.2.3-cp310-cp310-win_amd64.whl
Size 26.6 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
00a02b8fe62216a1f2c93c865bba205f2943726836dcc31df07dd4ada76d7b92
BLAKE2b-256 checksum
How to use checksums
9d93cce072b37aaa45ea2980fa3b27bcfb3099339d87bffe907e61626de838c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp310-cp310-win32.whl

Download URL ffcount-0.2.3-cp310-cp310-win32.whl
Size 24.8 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
3179f2c2d20f097419bd4634a9beef74f43f9bffd24b2008a1ee3f92527633aa
BLAKE2b-256 checksum
How to use checksums
bc1c0e3d14f1650dd145c7f92e91b310c6399dd99be37a88a5a056b1d548e3c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL ffcount-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl
Size 94.6 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
091b6fac83dc91e60169c8ad3f0dd364743821169578772e92a9b2c9ec53c17a
BLAKE2b-256 checksum
How to use checksums
0647c8aa64fbbaea35e60bf8c1c4ea6f8a62be0540de3a1902c878b81662a521
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp310-cp310-musllinux_1_2_i686.whl

Download URL ffcount-0.2.3-cp310-cp310-musllinux_1_2_i686.whl
Size 93.3 kB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
ffd6f7e34eb7445ab526e823c2c205b0cbe56af77126a1be5de550079f84a01a
BLAKE2b-256 checksum
How to use checksums
5582eddaba0a3c47e170eb6c50412a408f79508279b63e632b24f541c08342af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL ffcount-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl
Size 93.4 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e6ac46b686aa5003b5c4c95eac415d2c2721ad88ced0cc83376b87ea03ee703e
BLAKE2b-256 checksum
How to use checksums
05ee95c345d40447a21925f012f6f79dcfcba8bae476a27751fbb8626ded35db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL ffcount-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 94.6 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
350e0dbdb61b2de62abdb5c12e44b2e133d1e4028f39195cfe4b18cb1c6887ba
BLAKE2b-256 checksum
How to use checksums
a77724c862ecdf599c6e2420e70fe49c47929d76e81e30aa10ebd6df5e06d508
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL ffcount-0.2.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 96.0 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
37b815dc93faef10bca2bc0813976a5246b5e698f8e18e5d78ab93c9174f4d88
BLAKE2b-256 checksum
How to use checksums
9b734e6290195406c682082f5d53f4223d722471a5bbf9cf1429de3d3e04e1ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL ffcount-0.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 92.4 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
97917e8cac623d0833a95a1fb8740beb6020da4deb20635cd5376e90716450a5
BLAKE2b-256 checksum
How to use checksums
cccf42b3e2a82d2c3922d0eea3c8263238cf9e393d257dffdbd500746ec73aae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp310-cp310-macosx_11_0_arm64.whl

Download URL ffcount-0.2.3-cp310-cp310-macosx_11_0_arm64.whl
Size 25.6 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
afd7b9faebdfcf70988b60e54581779df894dda9fd2936f5b60bfc1aae67ac5b
BLAKE2b-256 checksum
How to use checksums
e3eadee568747c19ca522782fdceb556e7b2a33356a6f19fc4ce2264d0e69814
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp310-cp310-macosx_10_9_x86_64.whl

Download URL ffcount-0.2.3-cp310-cp310-macosx_10_9_x86_64.whl
Size 25.3 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
919560eb3143e1c34c2f15782d1d134b1eea81bbd14cc612732a5c54ca21467b
BLAKE2b-256 checksum
How to use checksums
7836a99267efc31bb8c724e62e4609612731c2d963858bba69c4d0dedfab5ce3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp310-cp310-macosx_10_9_universal2.whl

Download URL ffcount-0.2.3-cp310-cp310-macosx_10_9_universal2.whl
Size 41.7 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
856512f99d7c551b1e778f332bc02f873b0ed96ee69dfacb2fe34c0ccd5cc1e0
BLAKE2b-256 checksum
How to use checksums
4fceead3d60ef93ab9c28915310026d95abb694cd9463d7a698884787244836b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp39-cp39-win_amd64.whl

Download URL ffcount-0.2.3-cp39-cp39-win_amd64.whl
Size 26.6 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
7998ca478f185c797ed9fb8bd02adef723cb1617a6a7558e0092743e40237aa4
BLAKE2b-256 checksum
How to use checksums
68b223649b45d967c8a0f5e58f9a3ce981e37d9f59c608842e5b38ab00631804
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp39-cp39-win32.whl

Download URL ffcount-0.2.3-cp39-cp39-win32.whl
Size 24.8 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
a51d41a3ef56ae39c37b06441f273af20e400fd81fc98408fda83ec5e343e213
BLAKE2b-256 checksum
How to use checksums
be86a47149e12b4c57860625e2f4df340b39e654b6170b27733e141dde94baed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL ffcount-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl
Size 94.4 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
07e007f9377543cbb07743111817333d451f14c51301343245dbc73b0bc55c9f
BLAKE2b-256 checksum
How to use checksums
d956c04fb541ecc54b4e12fde1e357b9e90e2b0634b68620df6e2b9c490efedc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp39-cp39-musllinux_1_2_i686.whl

Download URL ffcount-0.2.3-cp39-cp39-musllinux_1_2_i686.whl
Size 92.9 kB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
4bb679effb88a66e99a62a897caccd524a43bcb4fc80d370bfea967a0917e799
BLAKE2b-256 checksum
How to use checksums
de417de678436aa961e5b60b64ea959386f1cc2bd6c8b822c452cbb9d2a43e8d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL ffcount-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl
Size 93.2 kB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e10d13bc060fa304332c25571a613dd7af8e514fd67d3cf38eb0ab4ca2326da9
BLAKE2b-256 checksum
How to use checksums
0a4f13d736435496338aecf26dcf9a2b423024d93fe7225814f73e7c2a123b60
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL ffcount-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 94.2 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
bbbd073bab126dc0429298c9b9036f62679c6cf5db4dd0617f32ab2647a43c2e
BLAKE2b-256 checksum
How to use checksums
1aa9f933478d988e82a295f388df59c61abfaf96324235471f9d853914d98013
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL ffcount-0.2.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 95.6 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
c3d24be1529d6750071a5f961ea9acc4864a9591227d2720c94d841daf27963d
BLAKE2b-256 checksum
How to use checksums
6363ef2f7e468aae8d7d8057ae75d76b3d5eb9c2516730a856562b55a592ad48
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL ffcount-0.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 92.1 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d9cf44537cf4683959ae7ca34656760f1a319cdf6e679215a9b16256c97b10b4
BLAKE2b-256 checksum
How to use checksums
91fa7f0389e37195798001f0e8a874aea6ccbb736b2c88b29e00efd3d0007bba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp39-cp39-macosx_11_0_arm64.whl

Download URL ffcount-0.2.3-cp39-cp39-macosx_11_0_arm64.whl
Size 25.6 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d1e5bc7d4e71f8ca6944973368071d314123b80dbb5430003fe243cf47fae1ac
BLAKE2b-256 checksum
How to use checksums
3109b0194da4cb816fdfc381d1a42a01caa6428e0bb09375bf2d6096ce9da970
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp39-cp39-macosx_10_9_x86_64.whl

Download URL ffcount-0.2.3-cp39-cp39-macosx_10_9_x86_64.whl
Size 25.3 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
09cf32686fdf2869eb232163500b9cddc13ae99a6c9f9478acce428aae7a3b16
BLAKE2b-256 checksum
How to use checksums
482068b3c2530aa164d662f7399246fa43f77e043ac64713bdfb36928ae80a7a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp39-cp39-macosx_10_9_universal2.whl

Download URL ffcount-0.2.3-cp39-cp39-macosx_10_9_universal2.whl
Size 41.7 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
a13c4513f5d41dd03667fc4aeaee57e8e2b0d52e6abafbc3cbb98f90c4e51a51
BLAKE2b-256 checksum
How to use checksums
f60f9ca57ebdf5ac7838fb762747105bf200e717938aad8c22720c32969575c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp38-cp38-win_amd64.whl

Download URL ffcount-0.2.3-cp38-cp38-win_amd64.whl
Size 26.6 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
69de7de03d5ece8bce42b71b8e5da4f28222424a38c6d96d81fbfbaacbd05bde
BLAKE2b-256 checksum
How to use checksums
a903c091f43b838b673f39902ed619606e41742471c8de238cbf46202b17344d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp38-cp38-win32.whl

Download URL ffcount-0.2.3-cp38-cp38-win32.whl
Size 24.7 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
60ddd8b43178a7fb754525e0c4050ec92466ec704a451b630b04511c2e22c592
BLAKE2b-256 checksum
How to use checksums
329d9d6be8508bd4b14b201159e6813bd6d3aa4e7921e6282e1cec2cd398b233
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL ffcount-0.2.3-cp38-cp38-musllinux_1_2_x86_64.whl
Size 93.5 kB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e30be8c904d0109ae106699151fd5694c0c51acaf65942228811b7b78cbd8fa5
BLAKE2b-256 checksum
How to use checksums
77a678206156a3b015137c9ca9eba6d88a1fb293aa5d1c2bc20560b13b778239
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp38-cp38-musllinux_1_2_i686.whl

Download URL ffcount-0.2.3-cp38-cp38-musllinux_1_2_i686.whl
Size 92.3 kB
Tags CPython 3.8 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
b2f94d10652200cab5c07cfec77f31082b01c8f4ef5eea94d1beef1e7db6759b
BLAKE2b-256 checksum
How to use checksums
3cee12f37b0f9d9b4c4f2502d02d579ff24517dc184f82729284e5aeaad71958
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp38-cp38-musllinux_1_2_aarch64.whl

Download URL ffcount-0.2.3-cp38-cp38-musllinux_1_2_aarch64.whl
Size 92.3 kB
Tags CPython 3.8 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f8fafb75a3ada4111e47923e602916f9b3d113c6f2fb359e9bdc352f987f77d1
BLAKE2b-256 checksum
How to use checksums
930e466f2c881c43a735e4a91d4c0bded6baf09f265d4a4e4cba29bd5d982786
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL ffcount-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 93.6 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
742aa1bf5b13170580e0ecea74e08ad6babf03df59ee3914a328fff09d0aae94
BLAKE2b-256 checksum
How to use checksums
218753b0dd17a653d108565721a1364efa730e59a0af9674a144be4d5c1e5570
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL ffcount-0.2.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 94.9 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
d2ec2f1b2e666149308c49b4239687363fc09429dc9de7d9aa902ff4001c42ee
BLAKE2b-256 checksum
How to use checksums
5a116797a53d3a059cac25d9062b12c767b91a98a35c64e0fe86cbc9d3e94dcc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL ffcount-0.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 91.6 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
9abdfb117b79840bc2de991269283ae87f6bb4bc604b2c128136a4552c8a6cbc
BLAKE2b-256 checksum
How to use checksums
7d0c0265d9f3bb5433d454d4d753f2e5ce2f86468a6812bce38add84eb0f8b77
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp38-cp38-macosx_11_0_arm64.whl

Download URL ffcount-0.2.3-cp38-cp38-macosx_11_0_arm64.whl
Size 25.5 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2e39d4d2ad62710daa4b0e622e7fc04b8aabac052f2b209bf78d8437fc671bf8
BLAKE2b-256 checksum
How to use checksums
54b54a419b3fb9dd4675fcf8f5c176495d69bb069ff1e5d1e1f679c2979fe979
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp38-cp38-macosx_10_9_x86_64.whl

Download URL ffcount-0.2.3-cp38-cp38-macosx_10_9_x86_64.whl
Size 25.2 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
f3e09748c3decc7fa2266ef642ae5cc338f0a35def22b6c999ee507b56c3d731
BLAKE2b-256 checksum
How to use checksums
3443efb83908bb7ba82fc9249626be690723f12ecc91cdf26a0a1ce8897a0307
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release files / ffcount-0.2.3-cp38-cp38-macosx_10_9_universal2.whl

Download URL ffcount-0.2.3-cp38-cp38-macosx_10_9_universal2.whl
Size 41.6 kB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
a640c0ca37e89dab38166588b4c4b8e92b4e5ad32bc8e0ccae424b0b9d9d31f2
BLAKE2b-256 checksum
How to use checksums
294bec865defa6927a27efa025765d63ec4f9673d4fce4e444f7642b33408052
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.8

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Feb 12, 2025.

Transparency log

Release history Release notifications | RSS feed

This release

0.2.3 This release

67 release files

0.2.2

43 release files

0.2.1

36 release files

0.2.0

29 release files

0.1.9

29 release files

0.1.8

29 release files

0.1.7

36 release files

0.1.6

29 release files

0.1.5

1 release file

0.1.4

1 release file

0.1.3

1 release file

0.1.2

1 release file

0.1.1

1 release file

0.1.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page