beanstalkc icon indicating copy to clipboard operation
beanstalkc copied to clipboard

A simple beanstalkd client library for Python

Results 25 beanstalkc issues
Sort by recently updated
recently updated
newest added
trafficstars

I'm using with flask like webhook. When app started Connection really, but after 30 minutes i'm raising error: `[Errno 104] Connection reset by peer when use.` Any way to fix...

After installing with ``` pip install --user beanstalkc ``` Trying this will fails: ``` ~> python Python 3.9.5 (default, May 14 2021, 00:00:00) [GCC 11.1.1 20210428 (Red Hat 11.1.1-1)] on...

YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details.

PyYAML's [yaml.load has been deprecated](https://github.com/yaml/pyyaml/wiki/PyYAML-yaml.load(input)-Deprecation). This patch addresses that by using `safe_load()` in place of `load()`. Addresses https://github.com/earl/beanstalkc/issues/74

hi, I use this lib in my project, in one process, I use a Connection to put message into a tube, after running several hours, I found that the process...

These three patches make beanstalkc compatible with python 2.4-3.4. Possibly even 2.3, but I don't have that installed anywhere to test.

When I use beanstalkc with gevent, I hit the error > [E 160217 14:26:01 event:37 f5e11774ac61efb21a5b9e64006c544d:10] This socket is already used by another greenlet: > Traceback (most recent call last):...

wish

Basic pool class implemented.