Skip to main content

Python reactive state management library inspired by MobX

Project description

FynX

FynX Logo

PyPI Version Build Status License: MIT Documentation Python Versions

FynX ("Finks") = Functional Yielding Observable Networks

FynX eliminates state management complexity in Python applications. Inspired by MobX and functional reactive programming, FynX makes your data reactive with zero boilerplate—just declare relationships once, and watch automatic updates cascade through your entire application.

Stop wrestling with manual state synchronization. Whether you're building real-time Streamlit dashboards, complex data pipelines, or interactive applications, FynX ensures that when one value changes, everything that depends on it updates instantly and predictably. No stale UI. No forgotten dependencies. No synchronization headaches.

Define relationships once. Updates flow automatically. Your application stays in sync—effortlessly.


🚀 Quick Start

Installation & Setup

📚 Read the Docs

Full API Reference

💡 Examples

Code Samples

🐛 Support

Report Issues


Quick Start

pip install fynx
from fynx import Store, observable

class CartStore(Store):
    item_count = observable(1)
    price_per_item = observable(10.0)

# Reactive computation
total_price = (CartStore.item_count | CartStore.price_per_item) >> (lambda count, price: count * price)
total_price.subscribe(lambda total: print(f"Cart Total: ${total:.2f}"))

# Automatic updates
CartStore.item_count = 3      # Cart Total: $30.00
CartStore.price_per_item = 12.50  # Cart Total: $37.50

For the complete tutorial and advanced examples, see the full documentation or explore examples/.

Observables

Observables are the heart of FynX—these reactive values automatically notify their dependents when they change. Create them standalone or organize them into Stores for better structure:

from fynx import observable, Store

# Standalone observable
counter = observable(0)
counter.set(1)  # Automatically triggers reactive updates

# Store-based observables (recommended)
class AppState(Store):
    username = observable("")
    is_logged_in = observable(False)

AppState.username = "off-by-some"  # Normal assignment, reactive behavior

Stores provide organizational structure for related state and unlock powerful features like store-level reactions and serialization.


Transforming Data with >>

The >> operator transforms observables through functions. Chain multiple transformations to build elegant derived observables:

from fynx import computed

# Inline transformations with >>
result = (counter
    >> (lambda x: x * 2)
    >> (lambda x: x + 10)
    >> (lambda x: f"Result: {x}"))

# Reusable transformations with computed
doubled = computed(lambda x: x * 2, counter)

Each transformation creates a new observable that recalculates automatically when its source changes.


Combining Observables with |

Use the | operator to combine multiple observables into reactive tuples:

class User(Store):
    first_name = observable("John")
    last_name = observable("Doe")

# Combine and transform in a single expression
full_name = (User.first_name | User.last_name) >> (lambda f, l: f"{f} {l}")

When any combined observable changes, downstream values recalculate automatically.

Note: The | operator will transition to @ in a future release to support logical OR operations.


Filtering with & and ~

The & operator filters observables to emit only when conditions are met. Use ~ to negate conditions:

uploaded_file = observable(None)
is_processing = observable(False)

# Create conditional observables
is_valid = uploaded_file >> (lambda f: f is not None)
preview_ready = uploaded_file & is_valid & (~is_processing)

The preview_ready observable only emits when a file exists, it's valid, and processing is inactive. All conditions must align before downstream execution—perfect for complex business logic.


Reacting to Changes

React to observable changes using the @reactive decorator, subscriptions, or the @watch pattern:

from fynx import reactive, watch

# Dedicated reaction functions
@reactive(observable)
def handle_change(value):
    print(f"Changed: {value}")

# Inline reactions with subscriptions
observable.subscribe(lambda x: print(f"New value: {x}"))

# Conditional reactions
condition1 = observable(True)
condition2 = observable(False)

@watch(condition1 & condition2)
def on_conditions_met():
    print("All conditions satisfied!")

Choose the pattern that fits your use case—FynX adapts to your preferred style.


The Four Reactive Operators

FynX provides four composable operators that form a complete algebra for reactive programming:

Operator Operation Purpose Example
>> Transform Apply functions to values price >> (lambda p: f"${p:.2f}")
| Combine Merge observables into tuples (first | last) >> join
& Filter Gate based on conditions file & valid & ~processing
~ Negate Invert boolean conditions ~is_loading

Each operation creates a new observable. Chain them infinitely to build sophisticated reactive systems from simple, composable parts.


Where FynX Shines

FynX excels when data flows through transformations and multiple components need to stay in sync:

  • Streamlit dashboards where widgets depend on shared state (see example)
  • Data pipelines where computed values must recalculate when inputs change
  • Analytics dashboards that visualize live, streaming data
  • Complex forms with interdependent validation rules
  • Real-time applications where state coordination becomes unwieldy

The library frees you from the tedious work of tracking dependencies and triggering updates. Instead of thinking about when to update state, you focus purely on what relationships should hold. The rest happens automatically.

Complete Example

Here's how these concepts compose into a practical file upload system. Notice how complex reactive logic emerges naturally from simple building blocks:

from fynx import Store, observable, reactive

class FileUpload(Store):
    uploaded_file = observable(None)
    is_processing = observable(False)
    progress = observable(0)

# Derive conditions from state
is_valid = FileUpload.uploaded_file >> (lambda f: f is not None)
is_complete = FileUpload.progress >> (lambda p: p >= 100)

# Compose conditions to control preview visibility
ready_for_preview = FileUpload.uploaded_file & is_valid & (~FileUpload.is_processing)

@reactive(ready_for_preview)
def show_file_preview(file):
    print(f"Preview: {file}")

# Watch the reactive graph in action
FileUpload.uploaded_file = "document.pdf"  # → Preview: document.pdf

FileUpload.is_processing = True
FileUpload.uploaded_file = "image.jpg"     # → No preview (processing active)

FileUpload.is_processing = False           # → Preview: image.jpg

The preview function triggers automatically, but only when all conditions align. You never manually check whether to show the preview—the reactive graph coordinates everything for you.

Additional Examples

Explore the examples/ directory for demonstrations of FynX's capabilities:

File Description
basics.py Core FynX concepts: observables, subscriptions, computed properties, stores, reactive decorators, and conditional logic
cart_checkout.py Shopping cart with reactive total calculation using merged observables and subscriptions
advanced_user_profile.py Complex reactive system demonstrating validation, notifications, state persistence, and sophisticated computed properties
streamlit/store.py Custom StreamlitStore implementation with automatic session state synchronization
streamlit/todo_app.py Complete reactive todo list application with Streamlit UI, showcasing real-time updates and automatic persistence
streamlit/todo_store.py Todo list store with computed properties, filtering, and bulk operations

The Mathematical Foundation

If you're curious about the theory powering FynX, the core insight is that observables form a functor in the category-theoretic sense. An Observable<T> represents a time-varying value—formally, a continuous function $\mathcal{T} \to T$ where $\mathcal{T}$ denotes the temporal domain. This construction naturally forms an endofunctor $\mathcal{O}: \mathbf{Type} \to \mathbf{Type}$ on the category of Python types.

The >> operator implements functorial mapping, satisfying the functor laws. For any morphism $f: A \to B$, we get a lifted morphism $\mathcal{O}(f): \mathcal{O}(A) \to \mathcal{O}(B)$, ensuring that:

$$\mathcal{O}(\mathrm{id}) = \mathrm{id} \qquad \mathcal{O}(g \circ f) = \mathcal{O}g \circ \mathcal{O}f$$

The | operator constructs Cartesian products in the observable category, giving us $\mathcal{O}(A) \times \mathcal{O}(B) \cong \mathcal{O}(A \times B)$. This isomorphism means combining observables is equivalent to observing tuples—a property that ensures composition remains well-behaved.

The & operator forms filtered subobjects through pullbacks. For a predicate $p: A \to \mathbb{B}$ (where $\mathbb{B}$ is the boolean domain), we construct a monomorphism representing the subset where $p$ holds true:

$$ \mathcal{O}(A) \xrightarrow{\mathcal{O}(p)} \mathcal{O}(\mathbb{B}) \xrightarrow{\text{true}} \mathbb{B} $$

This isn't merely academic terminology. These mathematical properties guarantee that reactive graphs compose predictably through universal constructions. Functoriality ensures transformations preserve structure: if $f$ and $g$ compose in the base category, their lifted versions $\mathcal{O}(f)$ and $\mathcal{O}(g)$ compose identically in the observable category. The pullback construction for filtering ensures that combining filters behaves associatively and commutatively—no matter how you nest your conditions with &, the semantics remain consistent.

Category theory provides formal proof that FynX's behavior is correct and composable. The functor laws guarantee that chaining transformations never produces unexpected behavior. The product structure ensures that combining observables remains symmetric and associative. These aren't implementation details—they're mathematical guarantees that follow from the categorical structure itself.

The practical benefit? Changes flow through your reactive graph transparently because the mathematics proves they must. FynX handles all dependency tracking and propagation automatically, and the categorical foundation ensures there are no edge cases or surprising interactions. You describe what you want declaratively, and the underlying mathematics—specifically the universal properties of functors, products, and pullbacks—ensures it behaves correctly in all circumstances.

Design Philosophy

FynX embodies a simple principle: mathematical rigor shouldn't compromise usability. The library builds on category theory but exposes that power through Pythonic interfaces. Observables behave like normal values—you read and write them naturally—while reactivity happens behind the scenes. Method chaining flows intuitively: observable(42).subscribe(print) reads like plain English.

Composability runs through every aspect of the design. Transform with >>, combine with |, filter with &. Each operation produces new observables that you can transform further. Complex reactive systems emerge from simple, reusable pieces. This compositional approach mirrors how mathematicians think about functions and morphisms, but you don't need to know category theory to benefit from its guarantees.

Multiple APIs for multiple contexts. FynX offers decorators for convenience, direct calls for control, and context managers for scoped reactions. The library adapts to your style rather than forcing one approach.

Framework agnostic. FynX works with Streamlit, FastAPI, Flask, or any Python framework. The core library has zero dependencies and integrates cleanly with existing tools. Whether you're building web applications, data pipelines, or desktop software, FynX fits naturally into your stack.

Note: FynX is currently single-threaded; async support is planned for future releases.

Test Coverage

FynX maintains comprehensive test coverage tracked through Codecov. Here are visual representations of our current coverage:

Sunburst Diagram Grid Diagram Icicle Diagram
Sunburst Coverage Diagram
The inner-most circle represents the entire project, with folders and files radiating outward. Size and color represent statement count and coverage percentage.
Grid Coverage Diagram
Each block represents a file. Size and color indicate statement count and coverage percentage.
Icicle Coverage Diagram
The top section represents the entire project, with folders and files below. Size and color represent statement count and coverage percentage.

Contributing

Contributions to FynX are always welcome! This project uses Poetry for dependency management and pytest for testing.

To learn more about the vision and goals for version 1.0, see the 1.0 Product Specification.

Getting Started

poetry install --with dev --with test
poetry run pre-commit install
poetry run pytest

The pre-commit hooks run automatically on each commit, checking code formatting and style. You can also run them manually across all files with poetry run pre-commit run --all-files.

Development Workflow

  • Test your changes: poetry run pytest --cov=fynx
  • Check linting: ./scripts/lint.sh
  • Auto-fix formatting: ./scripts/lint.sh --fix
  • Fork and create feature branch: feature/amazing-feature
  • Add tests and ensure they pass
  • Submit PR with clear description of changes
Love FynX?
Support the evolution of reactive programming by starring the repository
FynX — Functional Yielding Observable Networks | Architected with ❤️ by Cassidy Bridges
© 2025 Cassidy Bridges • MIT Licensed
<style> /* Hover effects */ a:hover { filter: brightness(1.1); } </style>

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

fynx-0.0.6.tar.gz (57.9 kB view details)

Uploaded Source

Built Distribution

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

fynx-0.0.6-py3-none-any.whl (61.7 kB view details)

Uploaded Python 3

File details

Details for the file fynx-0.0.6.tar.gz.

File metadata

  • Download URL: fynx-0.0.6.tar.gz
  • Upload date:
  • Size: 57.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.0 CPython/3.13.7 Linux/6.15.11-2-MANJARO

File hashes

Hashes for fynx-0.0.6.tar.gz
Algorithm Hash digest
SHA256 e2c52535d00adf1dcb9f712816b39f3627e3f4552e5a9a1d43dd8704b2e025ef
MD5 16cfa69402da9734b0b6c1d94eae276b
BLAKE2b-256 006cb4897c5ffdf915ecf764cf691354f9975d8810a921b2018c28c2ec77289e

See more details on using hashes here.

File details

Details for the file fynx-0.0.6-py3-none-any.whl.

File metadata

  • Download URL: fynx-0.0.6-py3-none-any.whl
  • Upload date:
  • Size: 61.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.0 CPython/3.13.7 Linux/6.15.11-2-MANJARO

File hashes

Hashes for fynx-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 d9139020223b62fd25d586790c730f4059fb09f2d02fa5bc576172aa08de5c22
MD5 ee958875d4507d11a45fd60287e25b2c
BLAKE2b-256 8ffc7136458dd2d7d1ecfb34e9388631744030a39cc6b0f7220f371cce5a11df

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