Metadata-Version: 2.1
Name: mathprimes
Version: 1.0.2
Summary: Well documented, super fast, prime number methods using mathematical algorithms.
Home-page: https://github.com/GrandMoff100/MathPrimes
License: MIT
Author: GrandMoff100
Author-email: nlarsen23.student@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Project-URL: Repository, https://github.com/GrandMoff100/MathPrimes
Description-Content-Type: text/markdown

# Primes

An implementation of prime number methods useful for programming.

Inlcuding `is_prime(47)  # -> True`, and `prime_factorization(8345)  # -> {1669: 1, 5: 1}`.


## Installation

Use `pip` or `poetry` or your other favorite package manager that supports installing packages from [PyPI](https://pypi.org)!

```py
pip install mathprimes
# Or
poetry add mathprimes
# Etc
```

## Usage
```py
from mathprimes import is_prime, prime_factorization
```


## Documentation
See `mathprimes.py` for function type hints, and function doc strings.


