Skip to main content

A library designed to streamline simple operations, loops and contexts.

Project description

Image
Version: 1.2.241001.1 (As in: 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

>>> 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
؜

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!

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

plaintools-1.2.241001.1.tar.gz (741.2 kB view details)

Uploaded Source

Built Distribution

plaintools-1.2.241001.1-py3-none-any.whl (742.3 kB view details)

Uploaded Python 3

File details

Details for the file plaintools-1.2.241001.1.tar.gz.

File metadata

  • Download URL: plaintools-1.2.241001.1.tar.gz
  • Upload date:
  • Size: 741.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for plaintools-1.2.241001.1.tar.gz
Algorithm Hash digest
SHA256 2d12e08e1c5efcf1d9df67266a9b4e12be6133a018a8f9e3cd53f90b4cdc9b70
MD5 a8961258594ae532db46dfaacc592daa
BLAKE2b-256 3859fe2d14afecb3d24acba1cee067326be668be8e20b934064e352197e5fff1

See more details on using hashes here.

File details

Details for the file plaintools-1.2.241001.1-py3-none-any.whl.

File metadata

File hashes

Hashes for plaintools-1.2.241001.1-py3-none-any.whl
Algorithm Hash digest
SHA256 6e3956e5ed98199a22b54b73480541da41b09639a49e17ca937efae85ce60e75
MD5 ecba47ae12694aaba06f665239132b31
BLAKE2b-256 6dd1aec54d740d89a4976cc0ac334dfb52e685d2f1d7980d1a58d325bdd14387

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page