Skip to main content

Cython interface for the primecount library

Project description

Cython interface to primecount (primecountpy fork)

This is a Cython interface to the C++ library primecount.

It is a compatible fork of primecountpy.

Quick installation and testing:

  1. Install primecount C++ library
cd /tmp/
git clone https://github.com/kimwalisch/primecount
cd primecount
cmake . -DBUILD_SHARED_LIBS=ON
make -j
sudo make install
sudo ldconfig # linux only
  1. in this repo, do
pip install . --user

python3 and

>>> import primecountpy as primecount
>>> primecount.prime_pi(1000)

More details on installation without root (sudo) access, and testing with pytest, may be found in the manual.

License

Distributed under the terms of the GNU General Public License (GPL) as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

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

passagemath_primesieve_primecount-0.1.1.2.tar.gz (12.7 kB view details)

Uploaded Source

Built Distributions

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

passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-musllinux_1_2_i686.whl (4.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-macosx_11_0_arm64.whl (337.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-macosx_10_15_x86_64.whl (392.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-musllinux_1_2_i686.whl (4.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-macosx_11_0_arm64.whl (333.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-macosx_10_15_x86_64.whl (389.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-musllinux_1_2_i686.whl (4.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-macosx_11_0_arm64.whl (333.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-macosx_10_13_x86_64.whl (389.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-musllinux_1_2_i686.whl (4.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-macosx_11_0_arm64.whl (333.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-macosx_10_13_x86_64.whl (389.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-musllinux_1_2_i686.whl (4.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-macosx_11_0_arm64.whl (333.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-macosx_10_9_x86_64.whl (389.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-musllinux_1_2_i686.whl (4.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-macosx_11_0_arm64.whl (333.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-macosx_10_9_x86_64.whl (389.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-macosx_11_0_arm64.whl (267.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-macosx_10_9_x86_64.whl (323.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2.tar.gz.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2.tar.gz
Algorithm Hash digest
SHA256 efb4208fb84db118336f66da856ad78f75fc0dd7a2e28ba63ed6cdf813cec08d
MD5 80039bc67e6097182279c4aff9e0306f
BLAKE2b-256 382e382c7a18ec39cecd25b73eb3111f955a7e7713f65cdc0fa7e485afa2671d

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c7ee6f2c89277970f593d6f84192859f9fbce9dddfdd1a82bdfef21a8a28f10
MD5 399046ee4ac281b017df61eae61349e9
BLAKE2b-256 608b28f9c02cf0eee6d0c801e377fff5288eb6bb6c2b18fe4286d9b444993e46

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b69cda5fe4dc08898eddbfb77bf3732e09f80bf6309edbc80e249142bd7b176c
MD5 1b0751485375287ad6e3af4482c33276
BLAKE2b-256 09f8459a3dfc13bdc5130288500ceca78038b4c435f9b8ff8a2d831c29a3d655

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3572ef847224ab3c61450d093456257a52a6d9818b1090e20b3269424637f6a3
MD5 607328f250a84f0f9ebc272043966d7f
BLAKE2b-256 cc0fbd997e89b1bbc484044cffcc7b5a147da9169b744755d1669f3e6795ac95

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 75eef9980f6dad0f4ffbf72847d9445d3818718c166f70b038d06e1208f8efff
MD5 37ff76e2980729fa78816354e1d8221b
BLAKE2b-256 df7f17a197719ad4f7af7286a5a39d66bffd2734635889003b7c7696fa01a268

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f94fad6c3bf4fe2016b2b9cd86051aa7d06bfdb8e2d13d54f7abddc608b4fc63
MD5 771c298c32ad11fa9114fa4ec8633620
BLAKE2b-256 d08f4b6a95a83ae6ebd3729271b491719adc40f9a0446df55faa70f5333023d9

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 17eed57305954862800489ee4dcbd2592b6f8c031b8942ea25ec83ab26126935
MD5 1527601241797d655b21cee8f122984a
BLAKE2b-256 ffd9b58536f6011a77fbc4ecefe808e31332b281e83ff9e6bf10be5401cb7f86

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed24ac295bbc2eb43b5dd4e28d0aef11cbc1da66f8a112506787536e63770b68
MD5 c56a1037a7e10568376bc6bd6909caf3
BLAKE2b-256 049bfb8119b02e7b5ebb23643ca6e5a0f57a52679f4fcc9a7b1ad1ee856c69f7

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a5214bcdada21ac17a7bab7e9060155409ed692671124b25a2ecba3fcef32cc2
MD5 5ff97b4ba06961b62caf3be668464870
BLAKE2b-256 3790cd1806609839ae098a6e87fb7e4a35b2d44218fc4d4831bd7c31b1e1cb9d

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 371966ed1deec38520697ea1a5ff1719348a68e1d7ddc8b15a58687a3a95e342
MD5 4fa987c79ffb7e97022f3a668e5917cd
BLAKE2b-256 e48d11e4199c1bdf0b0a7f89bacc1400587186975d97b56d5a35835804ff1c42

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1189c73eaf33d22cdfcdc80ab51647ab880dcaf75c7562d1fd440993a5849482
MD5 bd0d0d77bd796e5538b564493d6ec303
BLAKE2b-256 227beadb766c324385cd5a419f77626b7cf029a732d12578cd536cb6aa713423

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ca4ef7a621fdaec6716fb345f8db0a2bdcaf023009aeedce4562395fa773085
MD5 011c13fd949778ed8a7daf2b67d95b79
BLAKE2b-256 e6060c04f611eb5a32b796e35b060ddaf10b9077e27e6abcdd2edcef82a669dd

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dc21ffdddc824744ce9bf3a086ee8672b3b8b47308d7aaf9b67da5f8209eb37a
MD5 f7a889c3ccd213dfaee5e90838093fa2
BLAKE2b-256 0a05b13026a67fa8adddbbd746d0f269a6df1068084c7c5b99573a8d61490aad

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 63865613ec628025f338bde4fbaee7e4ee67658cd97f4f6449d2978da9246cb1
MD5 267c8a7f06f03804616efebf89c4437a
BLAKE2b-256 2f1f32d469c391c43fb208694ed9a79f50f4850458f4d20c859170f479b34347

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f0faecc1b79c916e095fc2d68016c2c2998b2d30aad394e9ab30246b1ab7e6d8
MD5 74243f9170c484650aac85c13245cca5
BLAKE2b-256 6790fb1be3ef1d2f90f05eabcd37348c6b4c33a573c83ecadc1836c7cf0fc7b5

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71244f479da10486b8cf7a9286c71900e6c24811276937c8e811d1bf3f6bf84b
MD5 e6465a68598b11f8033618423d08fd9a
BLAKE2b-256 718024b30031fa95f44f86576737319b2c8100ddb3743e45ddbcd5e167c420a7

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b0782875b764a40ca55d6b718bb208db950f7ae12eb8667b86057e4b336dfcba
MD5 332e22b849029039bb5c741a939b03b3
BLAKE2b-256 2e777cc5002ce3336a22236f973a7d9df44f8947e0572b797cbcbe14143e8689

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43715f9d0fdc516aefc57555e7ebea276ce877db308ba64f9163e3313cf614a0
MD5 d4aad180e95179773e34b1cc006b6a34
BLAKE2b-256 f62f01e7ebc904feee3b174f36d309bc3c700a856eff772697f4ed8a646cf057

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ab2e713e238127c5366b6fac6114b08ee67ae0f4a9a1c7b5b1a74d8f7484a787
MD5 a80160150f1df5a63a814fb9e2d34662
BLAKE2b-256 e6452f68b09b80df71f5d8efa309553c231136ff27b9d93f7ca80950714c19e4

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a370990ae595124b5b445945e33a1192ff596e8ff75bb825687962969755372
MD5 e14bbb7ac4215b45fe18ff063fffcd3c
BLAKE2b-256 8be37bc062d1a23712906f6e525714c7c6ba7bd82b6e6ef2c8eabc9014c0a33f

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c34a4a1f1b4413b3efd0551ee3d172038d1e3e15d02531e6700c0e02cc83035b
MD5 c9dfa627e45a9031d229610cd1f4c2e6
BLAKE2b-256 7b43008ca7cf09ab4a0e1add1764d94b0d9feff65de08c3247f70f5e68110619

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 cd8d03022ca36f12a11a4037183ee996c3aad898035e6696f0b0fba22a558c9b
MD5 8f5650030111196c268bdc7324a78609
BLAKE2b-256 22d4f1167852b0b8438c1835404d078ff1fc735108e5f065a31de19297287ea8

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0884dece7bce3b5d8f10b1b60b51acc562107e642c397963b0f21c69aeab8428
MD5 0998c064af5b24348cfe1457bad268ff
BLAKE2b-256 e2486991219b48d74de43e0a0e31f84853f091c9eb68c98f40736babf4fe5675

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e03a290a4217b19329181ef29c004db98379ab480bd6e86f00c6a51a00de97f3
MD5 524d44bc321e2c984539f58f3b2c5525
BLAKE2b-256 32948386157cef60e8b5a4360bff6b5561ba93f5ce4b1bf06cb09212de5ecd82

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a4f0d6f2274298612d6e2efccdddd07ceec2a746fba7c1d740e725649707df9a
MD5 217f813e2da83eb71d52bf1cb4290eed
BLAKE2b-256 a8f25e8f6b0134c8e13abd03fe85de9ddc357230e3c54efffc00c014d691081a

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5af218794070d52fe7ef7853fa04c1974d518dd69c0f03b03823c81fb87512c0
MD5 48434de7cb1466be223f7f88c0afe4ce
BLAKE2b-256 d4ce2fbf2591973f36d441c9bd83f1e24c8039adca14ec7fe66b8a99bf9cd5b7

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2760b2acf932a6f9542ff0655b264575bf737bb0d12577ae6a52ae3383b349e
MD5 912f2d69ac1bb5ba7914c9dcd404045e
BLAKE2b-256 d2e24ba07b05c1647242e6f93912549ad50a266a7fd0c8f3a691fe9ecffb44c3

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b176b392eaf230f634b242d26c1dfecffc103a3f8e8c64d412fe3807c0d5c97f
MD5 08db843a6b7bdb1e1d7306d1c7a80dcf
BLAKE2b-256 0e9820aa1bc666e29455a2473ecaf04310df741205f1444c323ce326cd08bc6b

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f28655a8df4c8a4c719ae8d5897420dff6387a9b9064e0208afd3dd3506facce
MD5 c650884ab5cb5c6e2a0134543c17a7c0
BLAKE2b-256 682d67ddcd782a4b2e35106cb9d62d78143c9fa6f7af9a9e2b3b033e3c3975d1

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 356eba95ea82ad242fede99a8cc722f17c1f1f11a40a966ca111f6540c231582
MD5 625daeb3fae56f49329d95aabbe341f8
BLAKE2b-256 e338b8f2c455c3b2e87c39199b39a162c0c6c79fc2811e1091ceb29b26e01d07

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 36e8d74c1b689bcb4b08f3bedf001c86d990f2708a8133dcc53c3bd8f4d4daf5
MD5 0bdb28177bb56adb6441c09412c9f153
BLAKE2b-256 c0b999ade69168b8af878a177725f259373b1ef1c8ca796c7cdcebfb100fdd98

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72c456ce766d3dc5331f65dbc1fa707aad80afe292ee9bdc5cc8ecefeef31593
MD5 76c0254aa783893b7c8e34624e09df69
BLAKE2b-256 2701d8d25e13f193c18377ff7f81074b3f83c60f684ebc50ec5acca2d3baad6e

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ed087e064774903f534f01b018f805ce0294b5767e2f1d8f00dc0bc59fd374f1
MD5 f91c98204beeec291a88773101272229
BLAKE2b-256 73b316161dae8a1380be5ac13027d0a9d042c14fdd5a7b43a166937d41c33091

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36bac4f98a23d73e7d07aa7aefeccc8b9603018292491ad7862eadef2efd3475
MD5 5446c42fb1b7cc8577703a5dd4508a36
BLAKE2b-256 414185c8cf8d513b041f8dd7100f50fb83547cdcd47d6c9777e1356ab4a1ad59

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 612144d84e71bfff29848de2b0a1cb4f909344d3b22b35b15c279c9b163938b3
MD5 cd5b5134e8e32a2bbc9e21ae06ce07ba
BLAKE2b-256 666022de88f66b8467dabcea0630a0989b930504095b7f225c066a608ed6e93f

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68da75b0551e8a4ea1d76471cf1e1bf97445dd3e3d63c1f85cb639b4b6ad41f5
MD5 b0078848d3c8b6b30c787d49f193d854
BLAKE2b-256 e2fc3e8d9776cbdf8f75e54ba34c266ff3df82a5026a928c2e3cec72f44c82d7

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82e0e113614c2bafb16fcbf48ea0d540291e457ad67205f8859f7358191955c3
MD5 b5c99be85268f1c9fcc0ee77c8470218
BLAKE2b-256 561c7212be257dd8217f0c7fd788f30616b45815d47934c9f9a61c166e9d2907

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 e420edd69c511543e10d58bebb813c5ff3475a445e81b70f52aa7b29f29a956a
MD5 493294a8701ee84e60de294d2340b768
BLAKE2b-256 758ee577570f5c7254e2010edaa45c550b4fe6b843b3241e5e39098727337f11

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0bd062f4ff5bb755fa5629589153311dea0781c16b8944a24c2272697f2f70c9
MD5 2e1811d2eeb573c751a546d50ac0caa4
BLAKE2b-256 24dd722da25c11f02d74e727c68657ca9bc2a40046ea790ce48c108bd93e36d2

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7eb0706875a628b2bd64c8cfcee54ecd6a10092cfc56bb9b01f215d2d0f25db2
MD5 4c658eb929f82d8aac1f6552ec6e31db
BLAKE2b-256 52b63865b83d49884a6b01190af381c2811204457f39c33082e12cc68dd3b744

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0b18967771d626724175b41f3721e6ceed322125762d04ee6dd709fd58031623
MD5 703808d160b36c4e964d8e4da3e2b4d1
BLAKE2b-256 479ff26404a6dc3458c1764b45a16d8bcb809d22e34be57dcf71be33ee0086a4

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e564586a5d10d63196d1ad579e2e3f858031f3a183dc04a8faa6957aa3cffa0a
MD5 5224cd76750f30033fb9404a5ab1da1e
BLAKE2b-256 6f3b26fdc3b7f4d5fbf8b6944582004519c4a4686dcb253a88ffcd8d87523fc4

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 476d6a0d775ba96fc8beb068b043b83cd54a329cd71ad97bb04f5012c10618a5
MD5 c4be3bc1b9dd158cdb2ffc3372dee3fc
BLAKE2b-256 35b22164d4773e9c5df6d68d1840b742269b6380530e18f01c142af856bb4a40

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6860926e6c1baa047613c0dd9f0e5c98fdf76ada38063a70a7ec61df8921b4cb
MD5 1cb25601b2c9cf926448f3bebb7177d7
BLAKE2b-256 94e47a79d0f83fb63706f91d8dc55125031d4233c0aa65bb501c2a44138f7921

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 052f08b0c02d122db9824d18f2757bbf2eb2a16bda86d30cd38bfdc06e23b261
MD5 912cfff1c714e1991a1f90d57b7ac8e0
BLAKE2b-256 f6a8435c6a12d6ff8e8beee13cde793c10bb77451af0f165dbc797b7e40b27a8

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 e68b7ed0e2b1ee6e2c807a0b3e1c158c9f3efcbb194490fde54f4c1de2bbc53d
MD5 a571036b7e876e34ab949969f9ca033f
BLAKE2b-256 0007e5fdaa59bf70f1c85dbea6acb7b5fd9f172f8d794021c96027651e332f5e

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a4640e3ea2c28f0a1df1bdd8f37097b3459802584d0ad9e6fd776472b1a63d7c
MD5 c445ca758e8249e6a8546007adbd54e6
BLAKE2b-256 9db53f4ad9d69dd84e5a7f8076d96ef0b9021fb16f457543e4e120a5d4d38bc4

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebdc1cc20a479157bcd5d43b13283388374ba4347deec327f801ffdf44316d91
MD5 d1c4ae513b714cdaa6105b9efb97f8a6
BLAKE2b-256 45f010df692ce23d05cef068ebaf800062aac15ebcbc91db4f8bca990a25c2af

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec1f7022dcabcea36f684a73ba3e4e26625357a6210c21d0a8b41f9a68e1d147
MD5 b3891edd215692ca2839224d5b807778
BLAKE2b-256 9bba572a472980f3ed3484a9034974a1b1c3e1890601bfa61ea901179c3d6dc0

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f462a2169758e3656768d9753546caefc53ec9ad8f61c3557ee60b39a0e16d78
MD5 69e33a68430477f57ebf60b3c33f2ae1
BLAKE2b-256 54f5ba28684e1b587c10d7279e05e98bffffd47b96e3afa63dd58d33b314949a

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 10437b701abd38728f86b5851061cd0d6693510f52b836d7c3d4ca3e37793c79
MD5 5fcd4d94ab7dbbef4274fd16ad8d360f
BLAKE2b-256 d32b40e8ba3819b961befddd8ee18f8c25a257ba457c1b5794a9dbfd0404b4d2

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 733fd81b1994b999eaf3f09a9a7b149beac97000dda017331e47024b3218eea7
MD5 8fa4f6efd1cfd73f58372184c1adfc4a
BLAKE2b-256 9a1af6b1d1063d3ecf06583cf09777b956428596ddd5c604becbe1f1fac7f55d

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b1c4dca6206e254f4c394a8c50bc504a6220c41bbec4932c0b759b606c2cbb1
MD5 a720f0cf8e449d1d41c9f29d4a79bf70
BLAKE2b-256 8de527d0244f25a97ba061cadc0be07c7ad0edf8f6ca42b6c68756b104c413d9

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 91be450d8d0a2b8b284ba4f62c347901a806db85113cd390511c63951e733e12
MD5 a19f17a99f02b1e79dc499e8e75e722e
BLAKE2b-256 8fe444f14bb57751a113e6df1911fca850a231f64effe7197d7502d02f7114e7

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f22a8e270dfeb3da9728dc81b0be9fee48657c960fc3fadbabf5aeadd7b92a7a
MD5 34754ffc2f971617e2b735e63888015e
BLAKE2b-256 0de63213bbe79ff7b0b0fe4879ec8c851f694b5eed38372ad9752973d661dd0d

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 636631fb310a0edd5e9ed2a0d56940b3b47a2610c090bbe35471d886f96429d9
MD5 979f225d6089e4514bb49a84c540674c
BLAKE2b-256 4506dce06c1c3d01c14d295a308b10184a4c463db485c0ca5a07cb6b100aad39

See more details on using hashes here.

File details

Details for the file passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for passagemath_primesieve_primecount-0.1.1.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 366e45260009a9e17e294d4e1e05916ee2a21a5be4a9714a10989c6dfb95777f
MD5 c8c93e7cd41f4f4a27807729f0a22f9a
BLAKE2b-256 be87b96b468f16c10f6ddfd25c5881b1cc36c79cfecace1aa0f8126478dac285

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