Minimalistic library for reactive state management
Project description
rxflow
Introduction
rxflow is minimalistic library for reactive state management in Python. It is inspired by derivablejs
Features
-
Small, no dependencies - Only 16KB of bytes of pure Pythonic goodness.
-
Push-pull change propagation - Elements are observable and can send change notifications (push). Consumers can then lazily evaluate or dereference the changed element as needed (pull). This approach balances the amount of information in updates with the amount of computation triggered automatically on a variable changing.
-
Glitch-free - Python evaluates from left to right producing a determinstic and glitch-free execution.
Installation
Install rxflow by running:
pip install rxflow
Background and Motivation
In computing, reactive programming is a declarative programming paradigm concerned with data streams and the propagation of change (Wikipedia)
In an imperative programming language like Python a variable assignment like c = a * b is instantaneous. a and b can be modified immediately after without affecting c
>>> a = 10
>>> b = 5
>>> c = a * b
>>> print(c)
50
>>> b = 10
>>> print(c) ## This will still be 50
50
>>>
Procedural programming is a sensible default because it allows us to make many simplifying assumptions about variable naming and reuse. However, there are other cases where we may prefer that c updates dynamically based on the latest values of a and b. In other words, we want c to be "reactive" to a and b.
A spreadsheet is essentially a reactive programming interface because we can set some cell $X$ based on the value of one or more another cells $Y1..YN$ and any updates to $Y1..YN$ would automatically propagate to $X$. Both spreadsheets and reactive programming work well for use cases where we need to model lots of variables linked through a complex system of relationships. Solving such tasks procedurally is cumbersome and produces code that is difficult to reason about. rxflow is designed to brige this gap.
Basic Example
>>> from rxflow import Var, Fn, Val
>>> a = Var(10)
>>> b = Var(5)
>>> c = Fn(lambda a, b: a * b, a=a, b=b)
>>> print(Val(c))
50
>>> b(10)
>>> print(Val(c)) ## This will be 100 because b has changed
100
>>>
Semantics
-
There are 3 basic types of elements
Var(variable),Fn(function) andSeq(sequence) -
A
Varis the most basic type of element. AVarcan be created, updated and dereferencedfrom rxflow import Var, Val ## Create a Var pi = Var(3.1) print(pi) ## >> Var(3.1) ## Dereference a Var curr_pi = Val(pi) print(curr_pi) ## >> 3.1 ## Dereference a Var pi(3.1415926535) print(Val(pi)) ## >> 3.1415926535
-
A
Fnis a value that is derived from other elements. AFncan be created and it's value can be evaluatedfrom rxflow import Var, Fn, Val pi = Var(3.141592) r = Var(42) ## Create a Fn from 2 Vars area = Fn(lambda pi, r: pi * pow(r, 2), pi=pi, r=r) ## Evaluate a Fn print(Val(area)) ## >> 5541.768288 ## Update one of the vars r(2048) print(Val(area)) ## >> 13176791.891968
-
A
Seqis a sequence of values that are derived from other elements. ASeqcan be created and it's values can be accessed by evaluating the generator.from rxflow import Var, Seq def fibber(N, fib0, fib1): def fibbr(n): if n == 0: return fib0 elif n == 1: return fib1 else: return N[n - 1] + N[n - 2] return fibbr f0 = Var(0) f1 = Var(1) fib = Seq(fibber, fib0=f0, fib1=f1) print(fib[5]) ## >> 5 print(fib[8]) ## >> 21 print(fib[2]) ## >> 16 f0(15) print(fib[2]) ## >> 16
-
create a
Seqby callingSeq(generator, **kwargs)generatoris a function that takesN: Seq, **argsand returns another function that accepts a single intnand returns the nth value in the sequence**kwargsare the named arguments of type (Union[Var,Fn,Seq]) that will be passed to the generator
-
access the elements of a
Seqe.g.my_seq[42]
-
Contribute
- Issue Tracker: https://github.com/achadha235/rxflow/issues
- Source Code: https://github.com/achadha235/rxflow
Support
If you are having issues, please let us know. We have a mailing list located at: reactivepython@google-groups.com
License
The project is licensed under the BSD license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rxflow-0.0.2.tar.gz.
File metadata
- Download URL: rxflow-0.0.2.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3504388e038cac3590d0e481dc12117cca2cf76b2678e59dc4b38e172735b03f
|
|
| MD5 |
6c2e48c016c24ed65f75b12cf8d7617e
|
|
| BLAKE2b-256 |
23d2b0f7d85ff05c3d7f2bbdcc7894db09daa30639586ae61a128952bf69ce86
|
File details
Details for the file rxflow-0.0.2-py3-none-any.whl.
File metadata
- Download URL: rxflow-0.0.2-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe5ba8cea831f8214fee6363f8b453c6d37b37c90bd8951ace020871895e5781
|
|
| MD5 |
c5ac49a274b01bf932af5a86fe36adb2
|
|
| BLAKE2b-256 |
24d17da2f3da2bf3fe45220f5131076ca9e2073c71d86647bed8f1f053554573
|