Skip to main content

No project description provided

Project description

PyPI version CI status

Observ 👁

Observ is a Python port of Vue.js' computed properties and watchers. It is completely event loop/framework agnostic and has no dependencies so it can be used in any project targeting Python >= 3.6.

Observ provides the following two benefits for stateful applications:

  1. You no longer need to manually invalidate and recompute state (e.g. by dirty flags):
    • computed state is invalidated automatically
    • computed state is lazily re-evaluated
  2. You can react to changes in state (computed or not), enabling unidirectional flow:
    • state changes lead to view changes (e.g. a state change callback updates a UI widget)
    • the view triggers input events (e.g. a mouse event is triggered in the UI)
    • input events lead to state changes (e.g. a mouse event updates the state)

API

from observ import observe, computed, watch

  • state = observe(state)

Observe nested structures of dicts, lists, tuples and sets. Returns an observable clone of the state input object.

  • watcher = watch(func, callback, deep=False, immediate=False)

React to changes in the state accessed in func with callback(old_value, new_value). Returns a watcher object. delelete it to disable the callback.

  • wrapped_func = computed(func)

Define computed state based on observable state with func and recompute lazily. Returns a wrapped copy of the function which only recomputes the output if any of the state it depends on becomes dirty. Can be used as a function decorator.

Quick start and example

Install observ with pip/pipenv/poetry:

pip install observ

Example usage:

>>> from observ import computed, observe, watch
>>>
>>> a = observe({"foo": 5})
>>>
>>> def my_callback(old_value, new_value):
...     print(f"{old_value} became {new_value}!")
...
>>> watch(lambda: a["foo"], callback=my_callback)
<observ.Watcher object at 0x00000190DAA7EB70>
>>> a["foo"] = 6
5 became 6!
>>>
>>> @computed
... def my_computed_property():
...     print("running")
...     return 5 * a["foo"]
...
>>> assert my_computed_property() == 30
running
>>> assert my_computed_property() == 30
>>>
>>> a["foo"] = 7
6 became 7!
>>> assert my_computed_property() == 35
running
>>> assert my_computed_property() == 35
>>>
>>> @computed                                
... def second_computed_property():          
...     print("running")                     
...     return 5 * my_computed_property()    
...                                          
>>> assert second_computed_property() == 175 
running                                      
running                                      
>>> assert second_computed_property() == 175 
>>>
>>> a["foo"] = 8                             
7 became 8!                                  
>>> assert second_computed_property() == 200 
running                                      
running                                      
>>> assert second_computed_property() == 200 

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

observ-0.1.0.tar.gz (5.7 kB view details)

Uploaded Source

Built Distribution

observ-0.1.0-py3-none-any.whl (5.5 kB view details)

Uploaded Python 3

File details

Details for the file observ-0.1.0.tar.gz.

File metadata

  • Download URL: observ-0.1.0.tar.gz
  • Upload date:
  • Size: 5.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.9 CPython/3.6.8 Windows/10

File hashes

Hashes for observ-0.1.0.tar.gz
Algorithm Hash digest
SHA256 bd3330ac128956cd306073ad634c0273eb2ca6b49ddc3994293c521acc12f616
MD5 0e82ef19cbecedddfa741c2678d2f8d7
BLAKE2b-256 a4c8fa3f11fe452f7c031c8a7ef3464ae5e7aafacc0c1bf03ebd2288e2cdff11

See more details on using hashes here.

File details

Details for the file observ-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: observ-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 5.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.9 CPython/3.6.8 Windows/10

File hashes

Hashes for observ-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b2569021551b7d7eace514e49114118513509ed447e7aed6b9e3aef7cc590f90
MD5 6ffe13cadc7bf38c41096882003ecc82
BLAKE2b-256 218898a9ba5ac7b3d5f366cf04331161711f4134c0679b28eb895d42a1db0b0c

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