معرفی شرکت ها


RxPy3-1.0.2


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Reactive Extensions (Rx) for Python, aliased for Rx3
ویژگی مقدار
سیستم عامل OS Independent
نام فایل RxPy3-1.0.2
نام RxPy3
نسخه کتابخانه 1.0.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Dag Brattli
ایمیل نویسنده dag@brattli.net
آدرس صفحه اصلی http://reactivex.io
آدرس اینترنتی https://pypi.org/project/RxPy3/
مجوز MIT License
This repository renames the package references for RxPY3 from `rx` to `rx3` so that you can install both rx and rx3 at the same time to ease with transitioning. Simply use `rx3` instead of `rx` wherever you'd normally import modules. ========================================== The Reactive Extensions for Python (RxPY) ========================================== .. image:: https://img.shields.io/pypi/v/rxpy3.svg :target: https://pypi.python.org/pypi/RxPy3 *A library for composing asynchronous and event-based programs using observable collections and query operator functions in Python* RxPY v3.0 ---------------- For v1.X please go to the `v1 branch <https://github.com/ReactiveX/RxPY/tree/release/v1.6.x>`_. RxPY v3.x runs on `Python <http://www.python.org/>`_ 3.6 or above. To install RxPY: .. code:: console pip3 install rxpy3 About ReactiveX ------------------ Reactive Extensions for Python (RxPY) is a set of libraries 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. .. code:: python import rx3 from rx3 import operators as ops source = rx3.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))) Learning RxPY -------------- Read the `documentation <https://rxpy.readthedocs.io/en/latest/>`_ to learn the principles of RxPY and get the complete reference of the available operators. I you need to migrate code from RxPY v1.x, read the `migration <https://rxpy.readthedocs.io/en/latest/migration.html>`_ section. There is also a list of third party documentation available `here <https://rxpy.readthedocs.io/en/latest/additional_readings.html>`_. Community ---------- Join the conversation on Slack! The gracious folks at `PySlackers <https://pyslackers.com/>`_ have given us a home in the `#rxpy <https://pythondev.slack.com/messages/rxpy>`_ Slack channel. Please join us there for questions, conversations, and all things related to RxPy. To join, navigate the page above to receive an email invite. After signing up, join us in the #rxpy channel. Please follow the community guidelines and terms of service. Differences from .NET and RxJS ------------------------------ RxPY is a fairly complete implementation of `Rx <http://reactivex.io/>`_ with more than `120 operators <https://rxpy.readthedocs.io/en/latest/operators.html>`_, and over `1300 passing unit-tests <https://coveralls.io/github/ReactiveX/RxPY>`_. RxPY is mostly a direct port of RxJS, but also borrows a bit from RxNET and RxJava in terms of threading and blocking operators. RxPY follows `PEP 8 <http://legacy.python.org/dev/peps/pep-0008/>`_, so all function and method names are lowercase with words separated by underscores as necessary to improve readability. Thus .NET code such as: .. code:: c# var group = source.GroupBy(i => i % 3); need to be written with an `_` in Python: .. code:: python group = source.pipe(ops.group_by(lambda i: i % 3)) With RxPY you should use `named keyword arguments <https://docs.python.org/3/glossary.html>`_ 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).


زبان مورد نیاز

مقدار نام
>=3.6.0 Python


نحوه نصب


نصب پکیج whl RxPy3-1.0.2:

    pip install RxPy3-1.0.2.whl


نصب پکیج tar.gz RxPy3-1.0.2:

    pip install RxPy3-1.0.2.tar.gz