Metadata-Version: 1.1
Name: PySqliteQueue
Version: 1.0.1
Summary: Sqlite based queue
Home-page: UNKNOWN
Author: Mark Andreev
Author-email: mark.andreev@gmail.com
License: MIT License
Download-URL: https://pypi.org/project/PySqliteQueue/#files
Description: # PySqliteQueue
        
        [![Build Status](https://travis-ci.com/mrk-andreev/PySqliteQueue.svg?branch=master)](https://travis-ci.com/mrk-andreev/PySqliteQueue) [![Maintainability](https://api.codeclimate.com/v1/badges/6193af027c24e08e7422/maintainability)](https://codeclimate.com/github/mrk-andreev/PySqliteQueue/maintainability)
        [![PyPI version](https://badge.fury.io/py/PySqliteQueue.svg)](https://badge.fury.io/py/PySqliteQueue)
        
        ```python
        from pysqlitequeue import SqliteQueue
        
        q = SqliteQueue(database=':memory:')
        
        q.put({'key': 'value'})
        
        q.peek() # Retrieves, but does not remove, the head of this queue, or returns null if this queue is empty.
        q.poll() # Retrieves and removes the head of this queue, or returns null if this queue is empty.
        
        q.size()
        q.empty()
        ```
Platform: any
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
