Metadata-Version: 1.1
Name: greenstalk
Version: 0.5.2
Summary: A Python 3 client for the beanstalkd work queue
Home-page: https://github.com/mayhewj/greenstalk
Author: Justin Mayhew
Author-email: mayhew@live.ca
License: MIT
Description: Greenstalk
        ==========
        
        .. image:: https://img.shields.io/pypi/v/greenstalk.svg
            :target: https://pypi.org/project/greenstalk/
        
        .. image:: https://secure.travis-ci.org/mayhewj/greenstalk.svg?branch=master
            :target: https://travis-ci.org/mayhewj/greenstalk
        
        .. image:: https://codecov.io/github/mayhewj/greenstalk/coverage.svg?branch=master
            :target: https://codecov.io/github/mayhewj/greenstalk
        
        Installation
        ------------
        
        Greenstalk supports Python 3.5 and later. It's available on the Python Package
        Index and can be installed by running:
        
        .. code-block:: bash
        
            $ pip install greenstalk
        
        Getting Started
        ---------------
        
        .. code-block:: pycon
        
            >>> import greenstalk
            >>> queue = greenstalk.Client(host='127.0.0.1', port=11300)
            >>> queue.put('hello')
            1
            >>> job = queue.reserve()
            >>> job.id
            1
            >>> job.body
            'hello'
            >>> queue.delete(job)
            >>> queue.close()
        
        Documentation
        -------------
        
        Documentation is available on `Read the Docs
        <https://greenstalk.readthedocs.io/>`_.
        
        Resources
        ---------
        
        - `beanstalkd FAQ <https://github.com/kr/beanstalkd/wiki/faq>`_
        - `Protocol documentation
          <https://raw.githubusercontent.com/kr/beanstalkd/master/doc/protocol.txt>`_
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
