معرفی شرکت ها


coalringbuf-0.1.0


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Python port of CoalescingRingBuffer from LMAXCollections
ویژگی مقدار
سیستم عامل -
نام فایل coalringbuf-0.1.0
نام coalringbuf
نسخه کتابخانه 0.1.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Jakub Stasiak
ایمیل نویسنده jakub@stasiak.at
آدرس صفحه اصلی https://github.com/jstasiak/coalringbuf
آدرس اینترنتی https://pypi.org/project/coalringbuf/
مجوز MIT
coalringbuf =========== .. image:: https://travis-ci.org/jstasiak/coalringbuf.png?branch=master :alt: Build status :target: https://travis-ci.org/jstasiak/coalringbuf *coalringbuf* is Python port of CoalescingRingBuffer from `LMAXCollections <https://github.com/LMAX-Exchange/LMAXCollections>`_. *coalringbuf* works with: * CPython 2.x >= 2.5, 3.x >= 3.2 * PyPy 1.9+ Supported platforms: platform independent. Status ------ It's usable and it passes port of original test suite. It's currently based on LMAXCollections 1.1.0. Usage ----- This port mimics original CoalescingRingBuffer API as closely as possible, however it was modified to make it more Pythonic. Example intepreter session: .. code-block:: python >>> from coalringbuf import CoalescingRingBuffer >>> buffer = CoalescingRingBuffer(3) >>> buffer.capacity 4 >>> buffer.empty True >>> buffer.offer('something') True >>> buffer.empty False >>> buffer.offer('something else') True >>> buffer.offer('quack') True >>> buffer.offer('id', 'value') True >>> buffer.size 4 >>> buffer.full True >>> buffer.offer('id', 'this will overwrite "value"') True >>> buffer.size 4 >>> buffer.offer('this will be rejected') False >>> buffer.size 4 >>> bucket = [] >>> buffer.poll(bucket) 4 >>> bucket ['something', 'something else', 'quack', 'this will overwrite "value"'] >>> buffer.empty True TODO ---- * implement performance tests * provide more efficient bucket class if needed Copyright --------- Original implementation (C) `LMAX <https://github.com/LMAX-Exchange>`_/`Nick Zeeb <https://github.com/nickzeeb>`_. Python implementation (C) 2013 `Jakub Stasiak <https://github.com/jstasiak>`_. This project is licensed under MIT license, see LICENSE file for details.


نحوه نصب


نصب پکیج whl coalringbuf-0.1.0:

    pip install coalringbuf-0.1.0.whl


نصب پکیج tar.gz coalringbuf-0.1.0:

    pip install coalringbuf-0.1.0.tar.gz