Skip to main content

No project description provided

Project description

kcounter

PyPI GitHub Workflow Status

A simple package for counting DNA k-mers in Python. Written in Rust.

Instalation

There are two ways to install kcounter:

  • Using pip:
pip install kcounter
  • Using conda:
conda install -c conda-forge -c bioconda kcounter

Usage

Currently, kcounter provides a single function, count_kmers, that returns a dictionary containing the k-mers of the chosen size.

>>> import kcounter
>>> kcounter.count_kmers('AAACTTTTTT', 3)
{'AAA': 1.0, 'ACT': 1.0, 'AAC': 1.0, 'CTT': 1.0, 'TTT': 4.0}
>>> kcounter.count_kmers('AAACTTTTTT', 4)
{'AACT': 1.0, 'CTTT': 1.0, 'ACTT': 1.0, 'AAAC': 1.0, 'TTTT': 3.0}

The relative_frequencies parameter can be used to obtain relative k-mer frequencies:

>>> kcounter.count_kmers('AAACTTTTTT', 3, relative_frequencies=True)
{'AAC': 0.125, 'TTT': 0.5, 'CTT': 0.125, 'ACT': 0.125, 'AAA': 0.125}

The canonical_kmers parameters aggregates the counts of reverse-complement k-mers (eg.: AGC/GCT):

>>> kcounter.count_kmers('AAACTTTTTT', 3, canonical_kmers=True)
{'ACT': 1.0, 'AAA': 5.0, 'AAC': 1.0, 'AAG': 1.0}

Plans for future versions:

  • Performance improvements.
  • Add an parameter that makes the function return a sparse k-mer counts.
  • Implement a function that returns a numpy array.

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

kcounter-0.1.2.tar.gz (18.9 MB view details)

Uploaded Source

Built Distributions

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

kcounter-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (467.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

kcounter-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (503.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

kcounter-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (543.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

kcounter-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (436.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

kcounter-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (264.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

kcounter-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (268.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

kcounter-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (259.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

kcounter-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (281.9 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

kcounter-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl (463.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

kcounter-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl (498.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

kcounter-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl (538.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

kcounter-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl (432.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

kcounter-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (263.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

kcounter-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (255.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

kcounter-0.1.2-cp314-cp314-win_amd64.whl (170.9 kB view details)

Uploaded CPython 3.14Windows x86-64

kcounter-0.1.2-cp314-cp314-win32.whl (161.6 kB view details)

Uploaded CPython 3.14Windows x86

kcounter-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl (461.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

kcounter-0.1.2-cp314-cp314-musllinux_1_2_i686.whl (496.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

kcounter-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl (538.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

kcounter-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl (431.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

kcounter-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (259.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

kcounter-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (263.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

kcounter-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (255.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

kcounter-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (276.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

kcounter-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (223.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

kcounter-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl (224.4 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

kcounter-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl (463.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

kcounter-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl (498.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

kcounter-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl (538.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

kcounter-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl (432.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

kcounter-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (263.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

kcounter-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (256.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

kcounter-0.1.2-cp313-cp313-win_amd64.whl (170.9 kB view details)

Uploaded CPython 3.13Windows x86-64

kcounter-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (461.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

kcounter-0.1.2-cp313-cp313-musllinux_1_2_i686.whl (497.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

kcounter-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl (538.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

kcounter-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (431.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

kcounter-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (259.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

kcounter-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (263.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

kcounter-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (255.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

kcounter-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (276.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

kcounter-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (223.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

kcounter-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (224.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

kcounter-0.1.2-cp312-cp312-win_amd64.whl (171.4 kB view details)

Uploaded CPython 3.12Windows x86-64

kcounter-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (462.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

kcounter-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (497.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

kcounter-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (539.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

kcounter-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (431.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

kcounter-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (260.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

kcounter-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (264.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

kcounter-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (255.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

kcounter-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (276.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

kcounter-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (223.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

kcounter-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (224.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

Details for the file kcounter-0.1.2.tar.gz.

File metadata

  • Download URL: kcounter-0.1.2.tar.gz
  • Upload date:
  • Size: 18.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for kcounter-0.1.2.tar.gz
Algorithm Hash digest
SHA256 448a315f9ad36633d6800fb85e799393bd68296486947a5c01eaa6e934da108e
MD5 7f1d01ad7880f24aae10130ec88318e4
BLAKE2b-256 8953575fa6c0247cc7f3724f32e2fb2ef3663b4c1ebfe455c1a8598e60c86c86

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0edaa8284862bd5a14deba50515598d215b7bdb7744ccaccb9a53c92725f0d84
MD5 aa1af20fdf7a2e6fad7bef260e23aa92
BLAKE2b-256 1ef79a2447d0ca305a6d70cd2cecfd5e340e4b4daee3ce14b165c71ae9d4d802

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 367034649561826231a20c503c77f5cbc6ae26447dd7fcc4f235aee135802b6e
MD5 04dff60b316601d4c77079140e34f64c
BLAKE2b-256 ccda4e9cea264b4b81a94c71c53d115a6ed6e6f06d717c84a1d811863ab5e717

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a0563880b66849c0189d0ebee5a8cf6c61c004410478e085595ca2348de451d2
MD5 78b937c95957dee397a2f99eeacf749b
BLAKE2b-256 012a8a6f7b1103b8a2c30026633e7e2a3e0efb423892012aeea7836292b83ab9

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b4e382eab911f0ca8b3ab6c57e9292a99df0819da23dd31c4f8ae73c6f17479
MD5 7ca31ea3977188b414d30f954951d422
BLAKE2b-256 35274f091b8c02362114eae43edc36d8e11618a4661dfd1a79979fdf081c05bd

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 358956e62ba7c83460d697c6b3d917efe5a1d56dce97fa3901a3f2f86809878f
MD5 cf639400ec672bab93c72434771a6aa8
BLAKE2b-256 0b71b7907ac7cb7c7bc703d018d3de68e48022e10ca916dd3c5cb5de7aee2709

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 99f934ff977b6164232ba6e4d83ae406ace65f4583635e69bcf24317ee59a736
MD5 f6062136008b2abab868ea333ead8bad
BLAKE2b-256 e09196c1c1ddd83721eed5e85147da60d005f4900405a0671ff478f5717f2c1b

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8c91250321b0d425ede0c4e602b010cddda0f1c2e247119e005b225b4ba8e89
MD5 4dd56f5a8f353520e7d9b56d21fd870f
BLAKE2b-256 426ee9848815930208e37c0348dd307669f26e5e58c5641889b85914c312d7dc

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a622ccb373a46b5ee2cb968b49164a3d000e3f46f0def9c8a7dad18c42e39a03
MD5 666a61715874f48e8ed931734af92b08
BLAKE2b-256 ac672217006dd8c92d9536c61d07810aa35530f726dd274868c1756edf8b24c1

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd0b0d634bdcd00a62b690982d87ff8ffa7bab7b10a810185614558125e5aef4
MD5 a8a26f8fd13811bcb8e82cfd2a106f30
BLAKE2b-256 190ada25efeb10a6a32b1b22dd491dab1be5a1c84a214035d0cc3f9643d7730c

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 29e106485fc35c68fc9213efbae95273b5ea84de7b8b5c273af5874597b112eb
MD5 9f51e4df5e92f4414b0c02411311df3e
BLAKE2b-256 6e5730be01c0cfa98c54ede650a2b8043604193fdde8014e0067be3eaac7f4cb

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cc5fe35b1e44e584ea228c26325bbc349d4793278069148b60738fe6078e2ede
MD5 d0c6f3169733ad047f19ae03c88b4e9c
BLAKE2b-256 f1ba02437eb0c29ba9385792e7d9ccb39d1d60117c1cd90c763686d5f5eba7c9

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22e913c097488a13dc9922e35243fd2dbd6469c3056298e003f67bf32f683bbe
MD5 95239497764ec398710886545471a333
BLAKE2b-256 9f988ae146b14d3c14340a0ac1f6bca217b3bda4317d65869133ce4204b52469

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 632f7ff8607e334bf10eb93846d88d7e17cc5af9be127fd531639c309206f594
MD5 7a3c1d313222ff39556148445759e275
BLAKE2b-256 b6a9b4ed9399d8f35ffe457b4bfd98df714f05a0ecefdcf1d06ac293bfdf287c

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d07b4e6eb72113ace0222a3558593e2e961f31ec011bade8ec85879a3925dec5
MD5 bd0ab2a1f139561672f2720c6bb79350
BLAKE2b-256 b1cc51835adec9edbebb9ba0e4e1c19641f180e7471a49d0be02d46581b6d2da

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: kcounter-0.1.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 170.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for kcounter-0.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e72d44b3c0cc518120ee78e5e6845b0243a9c29634d45d1a05dcc1bd21523ced
MD5 dd6cc3a34abfb262a06d365e7e9b4ed4
BLAKE2b-256 e513eaf63e68ac54f20deda5a234adf60cbf63f0152b7013bc1c06a1e56e82de

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: kcounter-0.1.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 161.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for kcounter-0.1.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 883d7eb2617e60811fc93426271fb7c6e60d4142e1aad9ede1a1233ca60eabc7
MD5 a5e9117d963ddef05f6619516a32a019
BLAKE2b-256 0f6c62f4db66430c134bfcc091b53b1b02cdd40fbb1e2c00f3e24bc1d2b53f91

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6fa09211c427615cabdd78896cb8b9579d79eb8efcf4b47f57f853dac6803ce8
MD5 6842ad31798794b9a85e2a138be96c8e
BLAKE2b-256 0d93d9e2d125627dff2d8f1bb1b25d35e904e211b760d397eda493cacfbaf828

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e82a287582ce5ed49ad5bc653c51de8a088b626272faa5fa384e3ec2d85cf58a
MD5 d01a96da3f0a29ef122b74654ce5b206
BLAKE2b-256 bc12b2d79e5bc7a7dabcd5b9c64074dcd901c9eaa317cf36eaece8c95ba42f33

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a1857d8dd960dbf56d0030d1334064196e6d6bdcc202bea18c307c44d3e9729b
MD5 8c5f5e9d0e9e3b22252fd81c2b4c508b
BLAKE2b-256 2203465673c473cfd9746ca42e2952401780ede3b72de3e05bc6675b377d068c

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2279d7a4ab54d48457b6c23dfedf480a35cea2b6ed96dbf15e55570d1d174d5e
MD5 4a9c00fb70e3299395b791b57619c98f
BLAKE2b-256 9c63641ba6216016df2907cc0a2d081893db2c5a4d1f30aa064992d1251b74d6

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3ca940cfcfd5006748d840109665cc1ec63a1b77bd1250a62ef8855853f88e8
MD5 0e7956d97911d65ff10c3783d63a1266
BLAKE2b-256 acf064fdbd0fa5694c5b949602e499bbf61a9dc199cbbb6eb1db2cd36b3b43f4

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 483b9f6ffc6b3dc12bc04f07cea124a81ecbdb18ffffef63429db75885520f5c
MD5 85825a1dec84c164e484ef241deb50d0
BLAKE2b-256 8793f8ed93dfb45a8c12b2ad30f915f3395d7ff085f4a7c749ec9aa3595a69da

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e68fc4e62d9635c50d35a3a024e6f54517b070ea71ce893f172ff9cc38376afe
MD5 5857f80559c1145b07f92c5a8ae6ee02
BLAKE2b-256 7388e96c0e53de2917d09bff0b9508d85e641c9ff9aa2f66378b38e38d01bad5

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ff149853c0ff366c80672ff9326a4181e703d020c288906d8618e42d146e379e
MD5 40f1b58b28fb4ff1b87d6298200edaf4
BLAKE2b-256 6baec704f5eaeccd7aaa78a3d08846b41ed19df5ee5d49562dde9357e2ec9b68

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0466ca460caf972be7848c37aa761fb85ed525c0ab3b88ec8f7e1f9326222bb1
MD5 9fc1d3b7da263b2ac417f2822fad11ab
BLAKE2b-256 da89f2ece6b02e7d01657fdff21f312044330eddc267774374fc45d54e9d1a87

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4c3d0a810cd94398f5c28d5c6b7679ace774eaece514615e8ce7133666f51cdb
MD5 0374843bbe76dbd278ce8715af2e4988
BLAKE2b-256 47f05d63ac70fd6d129ac019e96e45e5f62f0c33961eba43810cab825b61f211

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9fbc9bcf646deacf424b0a17ca0d12b5a038692504071862978af1f635ccea4
MD5 bb078540aacd6ef27c58b807f45b9dac
BLAKE2b-256 682947cd79153284758317224b95dc5acaf4f436f906cfd01b77633b4a9b6531

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7fb4f23d8591c929cbe0ff1f5012b60efacc189fcb6150b9c787d5690294038f
MD5 8d42821de5dc67dd9d8abb49bb154f06
BLAKE2b-256 a395a8698f422db036ec6c0f3990c0456637db1a76a6955d1d5511cfd8507d66

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 33da38d15e23af83c81f558061b26d5c78c12635722e2207e1ef406f96bace71
MD5 2d1befa00323ea90d16d370464264bc7
BLAKE2b-256 377d818c3b291f22783a7c282afbc0e9f7d86e225de1bc3d6ed16053250c9e7c

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 545319a045923904cc5ba042b4a74a01ce2dcb79217c78b0977311e59283fce6
MD5 ada1bc50d6ec215dcdb13a8494b81c42
BLAKE2b-256 bd6a77ab6224b3e39b67ab5e1b8a770115a376194655e5358cf87f07642cab40

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 781db89eba9767a6f813d01f74b05385fcde7d68da0084fb1760c08f5ce59b15
MD5 d1e3823969dc65f8e391f2938d2a2200
BLAKE2b-256 99932852fda8edf62d7cb2ae87897e6370574e19bea8a6e5b63987f0315c9b09

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4cbd8237f3d62b72bf8ebca96534d6c02c8fcf84184c468d49a0b4dbb25c4c15
MD5 899b4fd21f53abd76ef7e10ca9ab061a
BLAKE2b-256 bce1b31d21c900d37b75503c9debecf15173b8c2cf8f83fb4ca3fc60476cbc9d

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: kcounter-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 170.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for kcounter-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0b1d488348b398f8bd32d6f26274d3a7b6fbdfb2770c3fd98312805b277c6f79
MD5 28ae5b0bc7e0f6c79acce69382f38be0
BLAKE2b-256 ab67e47a4fee01b7bdd3514fa25e7c6b811ee66bf48c066c87fa80d75678588d

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 658dafcbf3b14e76b392d75a11f7bb253b05964367b88fe0f42cfc95c887b6f5
MD5 ec9485b8079ebeed0f38780f8a667951
BLAKE2b-256 d1d46894fce495ca86516991b2bcc60795456a7032b620d406732170f47cf03c

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 160912b074f474fdebf2796f8ebf2388f003b848b7ab127d4ee9d434ef0220c6
MD5 f1ec4774d3e0f151ba5266d4e975a20e
BLAKE2b-256 b0a8b5f632a1780b1acebfc7391d4228476c8254bc1d1113798dea39a830629f

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d24dc0f83986164b7acc04f4be2dd9aa64120ad282bf0f7689754b8cc2a649d6
MD5 80eccde21b5ac1d371532314b4b8135f
BLAKE2b-256 17dfd48cf48a0f32cd25784758f594a4dd2322eacdcfe09e886ca971250cd00b

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 041764de546bbb3960ae68cff5352877fd55753db7ca4210a6cb65c1eb55493e
MD5 941ac7b553197e07191d4156fe11e1ce
BLAKE2b-256 5a965e0a22a68fe212b0110e8ccae00d24dab594480bdba2c64ec570e07c4319

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5eb0a22cc3ede75e19a72786d37079c906735d3d0ec18657fbacea1929d82526
MD5 1c4423830e415796efbe23584360106c
BLAKE2b-256 8e0841e61493bfd38a776a0928b4410a924f00fa67c440b0d36a48337c02e202

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4851e46982e870aa2e7482ad825fc0f87efc94bc197dbf3d3da24c338e5776e4
MD5 a57b452f7c488763041fb18a93d1f5a8
BLAKE2b-256 93975c90a1d4eb764629aaeb50edcbe8bafb1a9b9c21d36f3cf036f8d77cbab0

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 447308fc60d35f4efe63ff603b62021c7ba54eb3c270729a2775a10f2fa7e50d
MD5 0172d73269c29fe60d05d70c5c0ec352
BLAKE2b-256 c718236e074f83cd90fb28958393a75717b5e1061b567b282ed82019ce607c67

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2941cf7e6058fdb117d975c09591959c50a1f7680446e489cf71aa4e16320bcf
MD5 b0cc91594fdfac2069b733f97f2de4fb
BLAKE2b-256 2b2636c933d8feb7be117c54e5dc3da7310d94d7f1a9b66064f859f54a2649b6

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3345107eaee756cd49903970c9f385c2617f48dae2346a6485b81b492823e317
MD5 f3f98bd1f864a10f367747385f87072c
BLAKE2b-256 f363f29cbfa4dd398dabf2814c1ced8ef7df1ce9800f2ad3e4317fbee74f3a36

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7bdfee3a42eb50b3b504950b531f50baf4bd5b074384a8b8aed631c13879fb9b
MD5 91078765faee908910337d0f2d22f37c
BLAKE2b-256 ceb1e5821fb9d53a2c16025582fe9e6c31c43a74b3339b0f1aac7ba7288d1aab

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: kcounter-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 171.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for kcounter-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4a1b575805df8f93eafee3f8093ef1275bad0b0eb2b0a4c9ac69bb87ba297b86
MD5 0389f0292613051b820e139430a017b7
BLAKE2b-256 84324a335190132d380981965dc38ccfdae40cf1ab0db36d57c354ee8dc01a79

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f755e4f456a764a866437ace3b61a7e93aee18373f7866becd20dd517eea5ed2
MD5 8daa869b7861faba77dc19172a2867f3
BLAKE2b-256 2c7ec3662b4cef6a08c9aedac88c60975c1ca3ff9701794e757ab5ea36ac7cee

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4402f53688e67a50206436f2ceafef90f12bd68cc9e5a9eea10de3b0029452e6
MD5 6f0830dd3142b91a7c153ebccd086092
BLAKE2b-256 f87cb488b872017779144f849aafd3b380bd2c9f26e80cd151218892e356fff3

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d5faa0065ba8703ab7776121a94df4b9e976ff0577ce52941a11a339cd160ab
MD5 38940745c3ba8d98098f3369f9c3127c
BLAKE2b-256 5b91f0fb27f11b15e29611e7c4f25d5983831f20385df246cbc338dcfc30e437

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea22a12ad70d5255e494031674b9ef30994b2b9a76e7c05288f93404616b457e
MD5 4376901111835a9fd4744a38b79ee175
BLAKE2b-256 0092e7daba9ad98c10795c493d6fe7eb5e682a5ac4ed1630d2279b3e3d6cdea3

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1523238648d7c23c10cbcdf638fd1ceddca9cb25aa120e4c3c90faa9dddafa52
MD5 277a29e0e68121262f059e866986cc44
BLAKE2b-256 043d2967465186bbf1319d1cd0b09cd9764db2ad68f25a25132df15a065b8b25

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ae77aefb9575d0a61f62e47eb3b9abf9994f5dd21069f5653bcdf0a19d73aca9
MD5 c05beb70d048a5287f9b1e968960cef6
BLAKE2b-256 af502acc3b2f72efeb66ad81876d2f09912d5645996c57b73092be174b78b0b2

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0737b003c58d4a79af73f36c47fa4644456ddd0284cbebee28dd3ad9ba6497f6
MD5 d42acfaa2a42d3bded2658c94e4284e1
BLAKE2b-256 8c2d28f0e8aa86d48b0b4b1fbc4960b3b724bf82876bd1632a594046f69f1c18

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 94892f304d7e44a8db312dbe0f52ca79b7bfc328cda9305099fc0ef05b0d2468
MD5 a79ef290857c1122cd5d7512132717f9
BLAKE2b-256 3810f26f7ed39b0b5ac88de6c43349c20a4765ee4c4392af5287160a9381113e

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da8fddaaef5cc01b11bb5b5f468c9c3f3b3c89fbbafac8a8cc8b98be0f0192b5
MD5 9a6c2428c70122fb00700d30d060e718
BLAKE2b-256 5717f63190fad730c6e66716e1cb4ebec815b66093225f0d2b0af32d2fd4596b

See more details on using hashes here.

File details

Details for the file kcounter-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for kcounter-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ec28636519f5c8b5aa37a3b1dafba93acf1d4be5ade970365e109220f975373
MD5 34bf7c7e1d616dda1350f51bb81a217b
BLAKE2b-256 398c4b47816b3e963df9a845b436da99848016bab737491111919e8c9171a618

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page