Skip to main content

Pure-Python library that enables generation and verification of Pratt certificates for prime numbers.

Project description

Pure-Python library that enables generation and verification of Pratt certificates for prime numbers.

PyPI version and link. Read the Docs documentation status. GitHub Actions status. Coveralls test coverage summary.

Installation and Usage

This library is available as a package on PyPI:

python -m pip install pratts

The library can be imported in the usual manner:

import pratts
from pratts import pratts

Examples

To generate a Pratt certificate for a prime number, it is sufficient to supply an iterable of appropriately chosen primes that make it possible to recursively construct the certificate:

>>> pratts(241, [2, 3, 5])
{2: [], 3: [2], 5: [2], 241: [2, 3, 5]}

Alternatively, a function that returns prime factors can be supplied (such as the primefactors function that is available in the SymPy library):

>>> from sympy import primefactors
>>> pratts(241, primefactors)
{2: [], 3: [2], 5: [2], 241: [2, 3, 5]}

A certificate can be verified by supplying its keys (such that the same certificate is generated and returned):

>>> certificate = pratts(1011235813471123581347, primefactors)
>>> pratts(1011235813471123581347, certificate.keys()) is not None
True
>>> pratts(1011235813471123581347, certificate.keys()) == certificate
True

Development

All installation and development dependencies are fully specified in pyproject.toml. The project.optional-dependencies object is used to specify optional requirements for various development tasks. This makes it possible to specify additional options (such as docs, lint, and so on) when performing installation using pip:

python -m pip install ".[docs,lint]"

Documentation

The documentation can be generated automatically from the source files using Sphinx:

python -m pip install ".[docs]"
cd docs
sphinx-apidoc -f -E --templatedir=_templates -o _source .. && make html

Testing and Conventions

All unit tests are executed and their coverage is measured when using pytest (see the pyproject.toml file for configuration details):

python -m pip install ".[test]"
python -m pytest

Alternatively, all unit tests are included in the module itself and can be executed using doctest:

python src/pratts/pratts.py -v

Style conventions are enforced using Pylint:

python -m pip install ".[lint]"
python -m pylint src/pratts

Contributions

In order to contribute to the source code, open an issue or submit a pull request on the GitHub page for this library.

Versioning

The version number format for this library and the changes to the library associated with version number increments conform with Semantic Versioning 2.0.0.

Publishing

This library can be published as a package on PyPI via the GitHub Actions workflow found in .github/workflows/build-publish-sign-release.yml that follows the recommendations found in the Python Packaging User Guide.

Ensure that the correct version number appears in pyproject.toml, and that any links in this README document to the Read the Docs documentation of this package (or its dependencies) have appropriate version numbers. Also ensure that the Read the Docs project for this library has an automation rule that activates and sets as the default all tagged versions.

To publish the package, create and push a tag for the version being published (replacing ?.?.? with the version number):

git tag ?.?.?
git push origin ?.?.?

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

pratts-0.1.0.tar.gz (9.1 kB view details)

Uploaded Source

Built Distribution

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

pratts-0.1.0-py3-none-any.whl (7.6 kB view details)

Uploaded Python 3

File details

Details for the file pratts-0.1.0.tar.gz.

File metadata

  • Download URL: pratts-0.1.0.tar.gz
  • Upload date:
  • Size: 9.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pratts-0.1.0.tar.gz
Algorithm Hash digest
SHA256 81fff75769b12eaf514670d69c6c05dd5b932511faffce890b7578fa5b469689
MD5 d90b477d07e84074a85dd4749e407cde
BLAKE2b-256 39e128fb74d5b540094b5dfd055c3da34b5825bed1d268c7109a75c27c4457b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pratts-0.1.0.tar.gz:

Publisher: build-publish-sign-release.yml on reity/pratts

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pratts-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: pratts-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 7.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pratts-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 193d09f1007d09279809c5c69ab7968ebe8c2758fe0ff054d2e0e06b3b6bfc15
MD5 6efb89e6ec2e8db4aa49f3464bb3d10f
BLAKE2b-256 a7a1e3b899eee6a5310cf0fe913ab49eb00ff6edb42372037c7e581dab12dc5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pratts-0.1.0-py3-none-any.whl:

Publisher: build-publish-sign-release.yml on reity/pratts

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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