| Version: 1.2.241004.2 (Main.sub.YYMMDD.rev) |
| - GitHub Repo | PyPi Repo |
| - Author's GitHub Profile |
Installation
This package can be installed & upgraded using pip:
pip install -U plaintools
Introduction
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
>>> 0.1 * 3
0.30000000000000004
>>> pt.pnumber(0.1 * 3)
0.3 # Deals with float imprecision errors.
>>> 5 / 3
1.6666666666666667
>>> pt.pnumber("5 / 3")
1.666... # '...' present only in string format; The true value is still float(5/3).
>>> 1 / 73
0.0136986301369863
>>> pt.pnumber(1 / 73)
0.013698630136986301369863... # Can detect long chains of repeating decimals!
>>> 0.9999999999999988
0.9999999999999988
>>> pt.pnumber(0.9999999999991234)
0.99999999999912 # No loss of precision up to 14 literal digits.
>>> 0.00000000001 ** 3
9.999999999999999e-34
>>> pt.pnumber(0.00000000001 ** 3)
1e-33 # Corrects scientific-notated float imprecisions as well.
>>> pt.pnumber("math.pi") # A safe variation of 'eval()' is used, as shown below!
3.141592653589793
# https://stackoverflow.com/a/1933463/26469850
>>> pt.pnumber("import shutil; shutil.rmtree('/.')") # Example of malicious use.
PlainTools.SEVAL.UnsafeError: Invalid syntax in expression
- More about Seval (Safe Eval).
Simple, right?
Countless more examples can be found in the Library's Documentation Page, so please check it out!
| GitHub Repo & Pages is a constant WIP!! |
|---|
| Thank you for your attention! |
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file plaintools-1.2.241004.2.tar.gz.
File metadata
- Download URL: plaintools-1.2.241004.2.tar.gz
- Upload date:
- Size: 748.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
516a336ed350edb6002bd472f34e217f09656e7b7757327bf8390abc7ec1c925
|
|
| MD5 |
55c339a48a04725a06384c0d79f00a41
|
|
| BLAKE2b-256 |
2ca212dc5568058f4d6a928319e75392382f8d1dded7dde4c67e909c7f68fb61
|
File details
Details for the file plaintools-1.2.241004.2-py3-none-any.whl.
File metadata
- Download URL: plaintools-1.2.241004.2-py3-none-any.whl
- Upload date:
- Size: 749.5 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 |
a58f168a7bd8c53a6f0b4bb0638a56e7719227fdf07213827d7ad003884eb440
|
|
| MD5 |
512567bbf4a6708060fe92fb24f6a90a
|
|
| BLAKE2b-256 |
e7237ef09ecb1e59b92c8c0dead616193494ab5b791574df7fe7aa4997e223fc
|