Metadata-Version: 2.1
Name: trprimes
Version: 0.0.1
Summary: Truncatable prime number generators
Home-page: https://github.com/harry-zuzan/trprimes
Author: Harry Zuzan
License: UNKNOWN
Project-URL: Source, https://github.com/harry-zuzan/trprimes
Keywords: prime numbers,truncatable
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Education
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: License :: OSI Approved :: The Unlicense (Unlicense)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.6, <4
Description-Content-Type: text/markdown
Requires-Dist: sympy

# Truncatable primes

A Python library that generates that generates sequences of truncatable
prime numbers and derivatives of the sequences in the form of a package
that can be installed and imported.

A truncatable prime is still prime when number is truncated.  For example,
317 is a left truncatable prime because 17 and 7 are prime.  It is also a
right truncatable prime because 31 and 3 are prime.

The intention of this library is to provide code that is reasonably efficient
and readable.  It is not difficult to track down cryptic one-liner code
that produces identical results.

## Getting Started

Python 3 is assumed.

### Installing

Simply clone the repository.

```
git clone https://github.com/harry-zuzan/trprimes.git


```
pip install trprimes
```

And have fun!

```
from trprimes import truncp
```



