You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

greenstalk

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

greenstalk

A Python client for the beanstalkd work queue

2.1.0
Source
pipPyPI
Maintainers
1

Greenstalk

.. image:: https://img.shields.io/pypi/v/greenstalk.svg :target: https://pypi.org/project/greenstalk/ :alt: Greenstalk on PyPI

Greenstalk is a small and unopinionated Python client library for communicating with the beanstalkd_ work queue. The API provided mostly maps one-to-one with commands in the protocol_.

Quickstart

.. code-block:: pycon

>>> import greenstalk
>>> client = greenstalk.Client(('127.0.0.1', 11300))
>>> client.put('hello')
1
>>> job = client.reserve()
>>> job.id
1
>>> job.body
'hello'
>>> client.delete(job)
>>> client.close()

Documentation is available on Read the Docs_.

.. _beanstalkd: https://beanstalkd.github.io/ .. _protocol: https://raw.githubusercontent.com/beanstalkd/beanstalkd/master/doc/protocol.txt .. _Read the Docs: https://greenstalk.readthedocs.io/

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts