A library designed to streamline simple operations, loops and contexts.
Project description
Version: 1.1.240923 (As in: Main.sub.YYMMDD)
Installation
This package can be installed using pip
in your CLI of choice as:
pip install PlainTools
The PyPi page can be found here.
Introduction
Welcome to the PlainTools library's GitHub repo!
PlainTools is a Python 3 library designed to introduce new features and fix awkward common interactions present in the Python 3 native ecosystem.
Most functions are prefixed with p
(as in pt.plist
or pt.pround
)
to avoid homonyms. The p
stands for Plain
and are the namesake of this package.
Some simple, yet relevant examples using the Plain Number(pt.pnumber
) function are:
>>> import PlainTools as pt
>>> print(0.1 * 3)
0.30000000000000004
>>> print(pt.pnumber(0.1 * 3))
0.3 # Deals with float imprecision errors.
>>> print(5 / 3)
1.6666666666666667
>>> print(pt.pnumber("5 / 3"))
1.666... # '...' present only in string format; The true value is still float(5/3).
>>> print(7 / 53)
0.0958904109589041
>>> print(pt.pnumber(7 / 53))
0.095890410958904109589041... # Can detect long chains of repeating decimals!
>>> print(0.9999999999999988)
0.9999999999999988
>>> print(pt.pnumber(0.9999999999999988))
0.9999999999999988 # No loss of precision up to 15 literal digits.
>>> print(0.00000000001 ** 3)
9.999999999999999e-34
>>> print(pt.pnumber(0.00000000001 ** 3))
1e-33 # Corrects scientific-notated float imprecisions as well.
>>> print(pt.pnumber("math.pi")) # A safe variation of 'eval()' is used, as shown below!
3.141592653589793
# https://stackoverflow.com/a/1933463/26469850
>>> print(pt.pnumber("import shutil; shutil.rmtree('/.')")) # Example of malicious use.
PlainTools.SEVAL.UnsafeError: Invalid syntax in expression
- More about Seval (Safe Eval).
Simple, right?
GitHub Repo|Pages is yet WIP!! Thanks for your attention!**
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file plaintools-1.1.240923.tar.gz
.
File metadata
- Download URL: plaintools-1.1.240923.tar.gz
- Upload date:
- Size: 1.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5490d10d13a28e6c41d5e30743eb742e045ffaabb40c0e3fdfc10307ad5b7be6 |
|
MD5 | 2d2a1a013eb487db45778545f89efec8 |
|
BLAKE2b-256 | 27d8ad0234434fa866a5a5f1b26c3ec60bb1617facccbce05cca673f618a7196 |
File details
Details for the file plaintools-1.1.240923-py3-none-any.whl
.
File metadata
- Download URL: plaintools-1.1.240923-py3-none-any.whl
- Upload date:
- Size: 29.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 963951a4a5949799cd752155c254d522291cb2095c551f2714b430d0d1a406ed |
|
MD5 | 485ca8bad4513cdd3fc1b793ea4de2bf |
|
BLAKE2b-256 | d8d215982fea0bb2ac476b6523a12dfb10d4ca70ca4080bcae0e633c735ebc93 |