A simple version of the Sieve of Eratosthenes. Developed during "Python for Scientific Computing" course at CINECA
Project description
colanderpy
A simple version of the Sieve of Eratosthenes.
Developed during "Python for Scientific Computing" course at CINECA
Install from source
Clone repository
git clone https://gitlab.hpc.cineca.it/cineca-hpyc/colanderpy.git
and install
$ cd pycolander
$ python setup.py install
Install from Python Package Index (PyPI)
pip install pycolander
Usage
Prime number generator
$ sieve -n 42
2 3 5 7 11 13 17 19 23 29 31 37 41
$ sieve -h
usage: sieve [-h] [-n LIMIT]
The Sieve of Eratosthenes.
Returns the list of prime numbers up to a maximum integer.
optional arguments:
-h, --help show this help message and exit
-n LIMIT, --limit LIMIT
maximum integer up to which the prime numbers are searched. (default 100)
Prime-counting function
$ prime-counting -n 42
13
$ prime-counting -h
usage: prime-counting [-h] [-n LIMIT]
Prime-counting function
Counts the number of prime numbers less than or equal to an integer number.
optional arguments:
-h, --help show this help message and exit
-n LIMIT, --limit LIMIT
maximum integer up to which the prime numbers are counted. (default 100)
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
colanderpy-0.5.1.tar.gz
(3.8 kB
view hashes)
Built Distribution
colanderpy-0.5.1-py3.8.egg
(5.3 kB
view hashes)