Giter Club home page Giter Club logo

Comments (2)

nmiculinic avatar nmiculinic commented on August 30, 2024

If I change pipe source to something like this it works, but it's kinda hacky

from typing import Callable

from aioreactive.core import AsyncObservable
from functools import wraps, partial
import importlib
import sys
import aioreactive.operators
def pipe(source: AsyncObservable, *args: Callable[[AsyncObservable], AsyncObservable]) -> AsyncObservable:
    for op in args:
        source = op(source)
    return source

_this_module = sys.modules[__name__]

def setup(x):
    def fn(*args, **kwargs):
        ff = eval(f"aioreactive.operators.{x}")
        return partial(ff, *args, **kwargs)
    setattr(_this_module, x , fn)

for x in ["concat", "debounce", "delay", "filter", "map", ]:
    setup(x)

from aioreactive.

dbrattli avatar dbrattli commented on August 30, 2024

Sorry, have done some refactoring so the correct way to import partially applied operators for the example is:

from aioreactive.core import Operators as op

Have fixed the example code in master.

from aioreactive.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.