Skip to content

Releases: apratheek/PyReactive

Revamped Subscribe API.

24 Jul 09:03

Choose a tag to compare

The Subscribe API has been revamped and in now intuitive. Accepts infix expressions as strings. Also, should be faster since updation uses map instead of for loop.

Silent notifications

01 Jul 11:55

Choose a tag to compare

Notifications are now silent in case the value does not change. This reduces the number of function calls as calls to the notify method are not processed in case there's no change to the Observe object's value.

Handles deep Lists, Dicts, Sets, ByteArrays

25 Jun 15:14

Choose a tag to compare

Along with a bunch of bug fixes, the code can now handle objects that can go deep. Example: a Dict can be inside of another Dict, which is inside of another Dict. If an Observe object is instantiated over the top most Dict, and if the innermost Dict is updated, the notify method of the Observe object is triggered. This wasn't being done in the previous releases.

Usable code

23 Apr 09:58

Choose a tag to compare

Various bug fixes, also added method="sum" on Lists, Sets and Dicts. Can now Observe the 'firstel' and 'lastel' on empty Lists.

PyReactive - Reactive Programming for Python

10 Apr 14:49

Choose a tag to compare

Alpha version of PyReactive. Still work in progress. Not production ready code

06 Apr 14:31

Choose a tag to compare

v0.0.1-alpha

Removed all prints