A library for composing asynchronous and event-based programs using observable collections and query operator functions in Python
For v3.X please go to the v3 branch.
ReactiveX for Python v4.x runs on Python 3.9 or above. To install:
pip3 install reactivexReactiveX for Python (RxPY) is a library for composing asynchronous and event-based programs using observable sequences and pipable query operators in Python. Using Rx, developers represent asynchronous data streams with Observables, query asynchronous data streams using operators, and parameterize concurrency in data/event streams using Schedulers.
import reactivex as rx
from reactivex import operators as ops
source = rx.of("Alpha", "Beta", "Gamma", "Delta", "Epsilon")
composed = source.pipe(
ops.map(lambda s: len(s)),
ops.filter(lambda i: i >= 5)
)
composed.subscribe(lambda value: print("Received {0}".format(value)))RxPY supports both fluent (method chaining) and functional (pipe-based) syntax, giving you the flexibility to choose the style that works best for your codebase:
Fluent style - Method chaining for a more Pythonic feel:
import reactivex as rx
result = (rx.of(1, 2, 3, 4, 5)
.map(lambda x: x * 2)
.filter(lambda x: x > 5)
.reduce(lambda acc, x: acc + x, 0)
)
result.subscribe(print) # Output: 24Functional style - Pipe-based for functional composition:
import reactivex as rx
from reactivex import operators as ops
result = rx.of(1, 2, 3, 4, 5).pipe(
ops.map(lambda x: x * 2),
ops.filter(lambda x: x > 5),
ops.reduce(lambda acc, x: acc + x, 0)
)
result.subscribe(print) # Output: 24Both styles are fully supported and can even be mixed in the same pipeline. Choose the style that best fits your team's preferences and coding standards.
Read the documentation to learn the principles of ReactiveX and get the complete reference of the available operators.
If you need to migrate code from RxPY v1.x or v3.x, read the migration section.
There is also a list of third party documentation available here.
Join the conversation on GitHub Discussions! if you have any questions or suggestions.
ReactiveX for Python is a fairly complete implementation of Rx with more than 120 operators, and over 1300 passing unit-tests. RxPY is mostly a direct port of RxJS, but also borrows a bit from Rx.NET and RxJava in terms of threading and blocking operators.
ReactiveX for Python follows PEP 8, so
all function and method names are snake_cased i.e lowercase with words separated by
underscores as necessary to improve readability.
Thus .NET code such as:
var group = source.GroupBy(i => i % 3);need to be written with an _ in Python:
# Functional style
group = source.pipe(ops.group_by(lambda i: i % 3))
# Or fluent style
group = source.group_by(lambda i: i % 3)With ReactiveX for Python you should use named keyword arguments instead of positional arguments when an operator has multiple optional arguments. RxPY will not try to detect which arguments you are giving to the operator (or not).
This project is managed using uv. Code is formatted using Ruff. Code is statically type checked using pyright.
After cloning the repository, install dependencies:
uv syncRun unit tests:
uv run pytestRun type checking:
uv run pyrightRun code checks (manually):
uv run pre-commit run --all-files