
Security News
Oxlint Introduces Type-Aware Linting Preview
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
.. 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
_.
.. 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
A Python client for the beanstalkd work queue
We found that greenstalk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.