Skip to main content

A simple queue lib base on sqlite3

Project description

# A simple queue lib base on sqlite3

----------

Feature:
- Local disk queue base on sqlite3
- Simple and easy to use


Usage:

```python

from sqlqueue import Queue
queue = Queue('myqueue')

print queue.get_nowait()
>>> None

queue.put('sqlqueue')
queue.put(1)
queue.put({'foo':1, 'bar':2})

print queue.get_nowait()
>>> 'sqlqueue'
print queue.get_nowait()
>>> 1
print queue.get_nowait()
>>> {'bar': 2, 'foo': 1}

```


This is a copy from [http://flask.pocoo.org/snippets/88/](http://flask.pocoo.org/snippets/88/) with little alternation



Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

sqlqueue-1.0.2-py2.py3-none-any.whl (2.8 kB view hashes)

Uploaded Python 2 Python 3

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