Skip to main content

Collection of persistent (disk-based) queues

Project description

Queuelib is a collection of persistent (disk-based) queues for Python.

Queuelib goals are speed and simplicity. It was originally part of the Scrapy framework and stripped out on its own library.

Requirements

  • Python 2.6

  • no external library requirements

Installation

Installation

You can install Queuelib either via the Python Package Index (PyPI) or from source.

To install using pip:

$ pip install queuelib

To install using easy_install:

$ easy_install queuelib

If you have downloaded a source tarball you can install it by running the following (as root):

# python setup.py install

FIFO/LIFO disk queues

Queuelib provides FIFO and LIFO queue implementations.

Here is an example usage of the FIFO queue:

>>> from queuelib import FifoDiskQueue
>>> q = FifoDiskQueue("queuefile")
>>> q.push('a')
>>> q.push('b')
>>> q.push('c')
>>> q.pop()
'c'
>>> q.close()
>>> q = FifoDiskQueue("queuefile")
>>> q.pop()
'b'
>>> q.pop()
'a'
>>> q.pop()
>>>

The LIFO queue is identical (API-wise), but importing LifoDiskQueue instead.

PriorityQueue

A discrete-priority queue implemented by combining multiple FIFO/LIFO queues (one per priority).

First, select the type of QUEUE (FIFO or LIFO):

>>> from queuelib import FifoDiskQueue
>>> q = FifoDiskQueue("somedir")

Then instantiate the Priority Queue with it:

>>> from queuelib import PriorityQueue
>>> pq = PriorityQueue(q)

And use it:

>>> pq.push('a', 3)
>>> pq.push('b', 1)
>>> pq.push('c', 2)
>>> pq.push('d', 2)
>>> pq.pop()
'b'
>>> pq.pop()
'c'
>>> pq.pop()
'd'
>>> pq.pop()
'a'

Mailing list

Use the scrapy-users mailing list for questions about Queuelib.

Bug tracker

If you have any suggestions, bug reports or annoyances please report them to our issue tracker at: http://github.com/scrapy/queuelib/issues/

Contributing

Development of Queuelib happens at GitHub: http://github.com/scrapy/queuelib

You are highly encouraged to participate in the development. If you don’t like GitHub (for some reason) you’re welcome to send regular patches.

All changes require tests to be merged.

Tests

Tests are located in queuelib/tests directory. They can be run using nosetests with the following command:

nosetests

The output should be something like the following:

$ nosetests
.............................................................................
----------------------------------------------------------------------
Ran 77 tests in 0.145s

OK

License

This software is licensed under the BSD License. See the LICENSE file in the top distribution directory for the full license text.

Versioning

This software follows Semantic Versioning

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

queuelib-1.1.tar.gz (6.7 kB view details)

Uploaded Source

File details

Details for the file queuelib-1.1.tar.gz.

File metadata

  • Download URL: queuelib-1.1.tar.gz
  • Upload date:
  • Size: 6.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for queuelib-1.1.tar.gz
Algorithm Hash digest
SHA256 5d01bfaa8f8bdb4e05e6670ac56ad543f340ecefe6f6f9506019973df114e266
MD5 d2c99076b69e09c416b1bb63369e9670
BLAKE2b-256 9b9b8f54f473608a896b2cfbab04c758f79d6db59fe3f52896b87f24c3014eaf

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page