https://github.com/marcoplatino/eulerkit
This is a library of functions that may come in useful when solving problems on Project Euler.
https://github.com/marcoplatino/eulerkit
math mathematics project-euler-python projecteuler python python-math python-math-library
Last synced: 3 months ago
JSON representation
This is a library of functions that may come in useful when solving problems on Project Euler.
- Host: GitHub
- URL: https://github.com/marcoplatino/eulerkit
- Owner: MarcoPlatino
- License: mit
- Created: 2025-07-28T18:43:07.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2026-03-14T00:10:04.000Z (4 months ago)
- Last Synced: 2026-04-09T04:29:51.815Z (3 months ago)
- Topics: math, mathematics, project-euler-python, projecteuler, python, python-math, python-math-library
- Language: Python
- Homepage:
- Size: 123 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EulerKit

[](https://pypi.org/project/eulerkit/)


[](https://github.com/MarcoPlatino/EulerKit/issues)
[](https://github.com/MarcoPlatino/EulerKit/pulls)
This is a Python Library inspired by the functions that are needed to solve many Project Euler problems. It also includes some utilities that I personally enjoy very much.
Here is a (non-comprehensive) list of features that are in the library:
- Palindromes
- The ability to verify if a number is a palindrome
- Prime Generation
- The ability to generate a large set of prime numbers - to a list or to a file if you want to pre-generate them.
- Pandigital
- The ability to verify if a number is pandigital or not
### Quickstart:
You can install the library by running:
`pip install EulerKit`
From there you can begin using the library immediately by including it as one of your imports:
```python
from EulerKit import*
```
If you want a more comprehensive guide, check the [wiki](https://github.com/MarcoPlatino/EulerKit/wiki)
If you are curious, the PyPi page is located [here](https://pypi.org/project/EulerKit/)