Metadata-Version: 1.1
Name: moonqueue
Version: 0.1.1
Summary: Queue with 
Home-page: https://github.com/Gatsby-Lee/moonqueue
Author: Gatsby Lee
Author-email: UNKNOWN
License: UNKNOWN
Description: moonqueue
        =========
        
        Author: Gatsby
        
        Since: 2019-04-04
        
        
        How to Install
        --------------
        
        .. code-block:: bash
        
            pip install moonqueue
        
        
        How To Use
        ----------
        
        .. code-block:: python
        
            >>> from mq import RedisQueue
            >>> r = RedisQueue('hello')
            >>> r.push(['apple'])
            >>> r.pop()
            ('hello', [b'apple'])
        
            # Multiple message can be pushed
            >>> r.push(['apple', 'banana'])
            >>> r.pop()
            ('hello', [b'apple'])
            >>> r.pop()
            ('hello', [b'banana'])
        
        
        Supported Message Storage
        ------------------------
        
        * Redis
        
        
Keywords: gatsby redis queue
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
