Skip to main content

Library for parsing and writing Simple Property List (SPL) files

Project description

PyTomUtil

A collection of helpful utilties in Python.

Similar to the tecoradors-elunico package I have but that is just for useful decorators. This is any useful utility: function or class or other

PyPI

Not yet published to PyPI but coming soon.

Content

frange class works like range but allows floating point values. Requires start, stop, and step to always be specified

class frange:
    def __init__(self, start: float, stop: float, step: float) -> None:
        ...

    def __iter__(self):
        ...

    def __next__(self):
        ...

lerp is a function for linearly interpolating between two values according to a percentage between 0.0 and 1.0.

Linear Interpolation in Wikipedia

def lerp(a: float, b: float, t: float) -> float:
    return (1 - t) * a + t * b

SRGBColor is a class for managing colors in SRGB color space. Works with linear interpolation between colors and luminance values. The class accepts r, g, b and optionally an alpha channel in the range 0.0 to 1.0.

class SRGBColor:
    def __init__(self, r: float, g: float, b: float, a: float = 1.0):
        ...

    def lerp(self, other: "SRGBColor", percent: float) -> "SRGBColor":
        ...

    @property
    def luminance(self) -> float:
        """Given an sRGB color as 3 RGB values between 0 and 1, return their relative luminance"""
        ...

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

pytomutil_elunico-0.0.4.tar.gz (7.5 kB view details)

Uploaded Source

Built Distribution

pytomutil_elunico-0.0.4-py3-none-any.whl (8.1 kB view details)

Uploaded Python 3

File details

Details for the file pytomutil_elunico-0.0.4.tar.gz.

File metadata

  • Download URL: pytomutil_elunico-0.0.4.tar.gz
  • Upload date:
  • Size: 7.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0

File hashes

Hashes for pytomutil_elunico-0.0.4.tar.gz
Algorithm Hash digest
SHA256 561e9b82ed1365b94e5b5a18534abce90c5c3ca576e76d186f16429790f21c6f
MD5 488c02b6bb59099c2a994ee199cdd4df
BLAKE2b-256 d9d872b116d76b19ff51e2047e0ca9050f5e64edffe66b02214272cc7ccdac59

See more details on using hashes here.

File details

Details for the file pytomutil_elunico-0.0.4-py3-none-any.whl.

File metadata

File hashes

Hashes for pytomutil_elunico-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 7a7146152ed2b1e34e5ca7fa03abeb02df0238ceee2e1522f35d97a9b1229ebf
MD5 1536c6633d80880592b6a6bcffd382ab
BLAKE2b-256 add1ea24157bbb869caf96bbdf32168c892ff968e8d90fc6de5a9187d6cfe146

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