معرفی شرکت ها


coroutines-0.1.4


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

A set of generic coroutines for doing things with pipelines.
ویژگی مقدار
سیستم عامل -
نام فایل coroutines-0.1.4
نام coroutines
نسخه کتابخانه 0.1.4
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Richard Betel
ایمیل نویسنده emteeoh@gmail.com
آدرس صفحه اصلی https://github.com/emteeoh/coroutines
آدرس اینترنتی https://pypi.org/project/coroutines/
مجوز AGPL
# Coroutines A set of generic coroutines for doing things with pipelines. ## Decorator Instead of having to remember to "prime the pump" after creating a co-routine, just decorate it! ```python import coroutines @coroutines.coroutine def mycoroutine(): while True: s=yield do_stuff(s) ``` ## Producers - trivialProducer will send the same thing, forever! - cycleProducer will round-robin send items in an infinite loop. - fileProducer will open() a file and send it line by line. - finiteProducer will only send items for a limited count. ## Consumers - trivialConsumer will print whatever it is sent. - fileConsumer will write to a file everything it is sent. - limitedConsumer will only consume a specified number of items. - ConsumeToBuffer will consume to a buffer. you can either have the consumer() stop when the buffer reaches a specified size, or have it buffer indefinitely with bufferedConsumer(). Either way, you obtain and reset the buffer with output() ## Filters - split will take a stream and send it to two downstream consumers - combine will receive from multiple upstream sources and will deterministically order its output. - matchre will match a regular expression against its incoming stream. Matches can be sent to one consumer and/or no-match can be sent to another - ConsumeToBuffer.bufferedConsumer() can be used as a filter if a next coroutine is specified.


نحوه نصب


نصب پکیج whl coroutines-0.1.4:

    pip install coroutines-0.1.4.whl


نصب پکیج tar.gz coroutines-0.1.4:

    pip install coroutines-0.1.4.tar.gz