aioreactive icon indicating copy to clipboard operation
aioreactive copied to clipboard

Async/await reactive tools for Python 3.11+

Results 23 aioreactive issues
Sort by recently updated
recently updated
newest added

**The complete code is extended , but this is a summary.** > This exception does not represent a real problem because my application finishes executing all the functions correctly, and...

Hi, i'm unsure if this is the intended behaviour, but rx.delay causes asyncio to frequently throw the following error. if i'm not mistaken, rx.delay(x: seconds) is supposed to be an...

Hello, Is there a reduce operator or not yet? If not, let me know and I will try to implement it.

I'm trying to adapt the concat operator to implement the catch_exception op, but just noticed that the concat fails with an async iterable. I'm using the following observable: ``` async...

Hi. I tried to run Autocomplete's sample. However, it did not work well with the following error. (I fixed the import part before running.) ``` WebSocket opened was never yielded...

I've got a functions: ```python def get_producer(): tool = Tool() async def start(listener): def on_event(event): listener(event) tool.on_scan_result = on_event tool.start_scan() await tool.transport.drain() async def stop(): tool.stop_scanning() await tool.transport.drain() return {...

```python import asyncio from aioreactive.core import AsyncObservable, run async def generator(): # Also fails with sync generators for i in range(10): if i > 2: print("Let's raise") raise ValueError(i) #...

Hi Dag, I think the pipe syntax for chaining operators is really cool, and am missing something similar to complete the chain. That is, I find myself writing code like...

Dag, the wave of commits 27 days ago aligned the API more with RxPY and introduced quite a number of breaking API changes (subscribe instead of start, etc). Could you...