Skip to main content

Reactivity library for PyQT

Project description

pyqt-reactivity

Description

pyqt-reactivity is a project that aims to provide basic reactivity module for PyQt widgets.

Installation

Install the latest version from PyPI:

pip install -U pyqt-reactivity

Usage

To use basic reactivity module, see the following example:

from pyqt_reactivity import Ref, computed, ref

# Create a reactive reference.
a = ref(1)
a.watch(lambda v: print("a updated:", v))


# Define a computed function that depends on the reactive reference.
def a_squared(a: Ref[float]) -> float:
    return a.value**2


# Create a computed reference.
b = computed(a_squared, args=(a,))
b.watch(lambda v: print("b updated:", v))

# Update the reactive reference.
a.value = 2

See more implementations on examples folder.

License

MIT

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

pyqt_reactivity-0.2.0.tar.gz (6.0 kB view hashes)

Uploaded Source

Built Distribution

pyqt_reactivity-0.2.0-py3-none-any.whl (9.1 kB view hashes)

Uploaded Python 3

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