Skip to main content

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

Reason this release was yanked:

Superseeded by beta release

Project description

Image

Version: V1.0.240918b (As in: Main.sub.YYMMDD branch)

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 :code:pt.plist or :code: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' 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?

GitHub Repo|Pages & Documentation is yet Work in Progress!! Thanks 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.0.240919.tar.gz (1.8 MB view details)

Uploaded Source

Built Distributions

plaintools-1.0.240919.0-py3-none-any.whl (29.6 kB view details)

Uploaded Python 3

plaintools-1.0.240919-py3-none-any.whl (29.5 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: plaintools-1.0.240919.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

Hashes for plaintools-1.0.240919.tar.gz
Algorithm Hash digest
SHA256 e17c56dea70e283399dc5842493ff3bf7cf3b05d0b59e66874a329c3bdc22728
MD5 5aa1222345bdb31362df0206f781878b
BLAKE2b-256 4810e47d9d1612763f94425759c4eb7b5404fc4f35e568e1493937f0a9e10bcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for plaintools-1.0.240919.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bd8428cff7840db8b44ef6f6360c507dc37cc5da4a1a1fc9ba88f753db02ed4f
MD5 d6ae61b8793f9e67cda3c23b7b12ff31
BLAKE2b-256 bc6df136d625f81eb0ec7f83c5937ab738ca1c736a32b443dbafe31e4ebb3333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for plaintools-1.0.240919-py3-none-any.whl
Algorithm Hash digest
SHA256 3bb82204637e684e0c8415c14ab9c313f8cd58237b0dac49f3fecbe1d7dfd7c7
MD5 250381f897228d17e1e1ff3a33ce1b3e
BLAKE2b-256 5d808a5950aa142568444c3878e2db2deb84eddfa1a1567fd4b6e0be51f131f0

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