Skip to main content

Library for creating a dependency graph of cached properties

Project description

UseState

Wrap your class's instance methods with @use_state, @use_property, and @use_lazy_generated_state to create a dependency graph of cached properties that only regenerate when their dependencies change.

Uses Python's data descriptors to proxy (to the graph) access of properties. Graph nodes are stored on the instances of classes that use the decorators, for sane garbage collection sake.

Installing

Available on PyPI as UseState

$ pip install UseState

Examples

See examples folder

#!/usr/bin/env python3

import math

from UseState import use_state, use_property, use_lazy_generated_state

class Cylinder:
    def __init__(self, radius: float, height: float) -> None:
        self.radius = radius
        self.height = height

    @use_property()
    def color(self) -> int:
        print("Calculating default color")
        return "yellow"

    @use_state()
    def radius(self) -> float:
        print("Calculating default radius")
        return 0.0

    @use_state()
    def height(self) -> float:
        print("Calculating default height")
        return 0.0

    @use_lazy_generated_state({"radius"})
    def area(self) -> float:
        print("Calculating area")
        return self.radius * self.radius * math.pi

    @use_lazy_generated_state({"area", "height"})
    def volume(self) -> float:
        print("Calculating volume")
        return self.area * self.height

def main() -> None:
    c = Cylinder(4.0, 8.0)

    print(c.area)
    # Calculating area
    # 50.26548245743669

    print(c.volume)
    # Calculating volume
    # 402.1238596594935

    c.radius = 4.0 # doesn't cause invalidation because value is same

    print(c.volume)
    # 402.1238596594935

    c.radius = 1.0 # invalidates area, which invalidates volume

    print(c.volume)
    # Calculating area
    # Calculating volume
    # 25.132741228718345

    print(c.area) # cached by previous call to volume
    # 3.141592653589793

    print(c.volume)
    # 25.132741228718345

if __name__ == "__main__":
    main()

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

usestate-0.4.0.tar.gz (17.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

usestate-0.4.0-py3-none-any.whl (18.6 kB view details)

Uploaded Python 3

File details

Details for the file usestate-0.4.0.tar.gz.

File metadata

  • Download URL: usestate-0.4.0.tar.gz
  • Upload date:
  • Size: 17.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.4

File hashes

Hashes for usestate-0.4.0.tar.gz
Algorithm Hash digest
SHA256 2432b7d76ba4d2397ef67724549250ce0b83e162dc67ed3f2485ffe406f48f5c
MD5 d8d9d67bb9e9e99b1abad193e1dcb60b
BLAKE2b-256 652ae9f4dbe49b4f77d7e3161b4389326730e26567c26d9bf7374744acad7e4e

See more details on using hashes here.

File details

Details for the file usestate-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: usestate-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 18.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.4

File hashes

Hashes for usestate-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 541b4df772734916d96fe7f0293b6653af7d322880054965b2f12a3ef37458ab
MD5 4fdf4da5affce0cc64ae0bb0d6ffdc4d
BLAKE2b-256 3f24be159ed73a769958e8de884b3684153ec5d3976fea5c89987930d5d96518

See more details on using hashes here.

Supported by

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