Metadata-Version: 2.4
Name: par-sieve
Version: 1.5.0
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Dist: numpy
License-File: LICENSE
Summary: Parallel Prime Sieve for Python
Author-email: Sam Foster <slfotg@gmail.com>
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Homepage, https://github.com/slfotg/par-sieve

# par-sieve
Parallel Prime Sieve for Python

```py
>>> from par_sieve import get_primes
>>> get_primes(100)
array([ 2,  3,  5,  7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59,
       61, 67, 71, 73, 79, 83, 89, 97], dtype=uint64)
>>> len(get_primes(1000000000))
50847534
```

