معرفی شرکت ها


filequeue-0.4.1


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

A thread-safe queue object which is interchangeable with the stdlib Queue. Any overflow goes into a compressed file to keep excessive amounts of queued items out of memory
ویژگی مقدار
سیستم عامل -
نام فایل filequeue-0.4.1
نام filequeue
نسخه کتابخانه 0.4.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Paul Wiseman
ایمیل نویسنده poalman@gmail.com
آدرس صفحه اصلی http://pypi.python.org/pypi/filequeue
آدرس اینترنتی https://pypi.org/project/filequeue/
مجوز BSD
.. contents:: Overview ======== .. role:: mod(emphasis) :mod:`filequeue` is a Python library that provides a thread-safe queue which is a subclass of ``queue.Queue`` from the stdlib, ``filequeue.FileQueue``. ``filequeue.FileQueue`` is a drop in, swap out replacement for ``queue.Queue`` and will overflow onto disk if the number of items exceeds the specified buffersize, ``maxsize``, instead of blocking or raising ``Full`` like the regular ``queue.Queue``. There is also ``filequeue.PriorityFileQueue`` and ``filequeue.LifoFileQueue`` implementations, as counterparts to ``queue.PriorityQueue`` and ``queue.LifoQueue``. **Note** ``filequeue.FileQueue`` and ``filequeue.LifoFileQueue`` will only have identical behaviour as ``queue.Queue`` and ``queue.LifoQueue`` respectively if they are initialised with ``maxsize=0`` (the default). See ``__init__`` docstring for details (``help(FileQueue)``) **Note** ``filequeue.PriorityFileQueue`` won't currently work exactly the same as a straight out replacement for ``queue.PriorityQueue``. The interface is very slightly different (extra optional kw argument on ``put`` and ``__init__``), although it will work it won't behave exactly the same if using as a swap out replacement. It might still be useful to people though and hopefully I'll be able to address this in a future version. Requirements: - Python 2.5+ or Python 3.x Why? ---- The motivation came from wanting to queue a lot of work, without consuming lots of memory. The interface of ``filequeue.FileQueue`` matches that of ``queue.Queue`` (or ``Queue.Queue`` in python 2). With the idea being that most people will use ``queue.Queue``, and can then swap in a ``filequeue.FileQueue`` only if the memory usage becomes an issue. (Same applies for ``filequeue.LifoFileQueue``) Licence ------- Made available as-is under the BSD Licence. Issues ------ Any issues please post on the `github page <https://github.com/GP89/FileQueue/issues>`_.


نحوه نصب


نصب پکیج whl filequeue-0.4.1:

    pip install filequeue-0.4.1.whl


نصب پکیج tar.gz filequeue-0.4.1:

    pip install filequeue-0.4.1.tar.gz