Beanstalkd bindings for python3
Project description
pystalkd
Beanstalk is a simple, fast work queue. Its interface is generic, but was originally designed for reducing the latency of page views in high-volume web applications by running time-consuming tasks asynchronously
http://kr.github.io/beanstalkd/
pystalkd is a beanstalkd bindings targeting python3. This library is based on https://github.com/earl/beanstalkc and should be API compatible.
Installing
pip install pystalkd
or from source:
python setup.py install
Using
>>> from pystalkd.Beanstalkd import Connection
>>> c = Connection("localhost", 11300) #if no argument is given default configuration is used
>>> c.put("hey!")
>>> job = c.reserve(0)
>>> job.body
"hey!"
One of the goals is to be API compatible with beanstalkc, so this tutorial should be valid: https://github.com/earl/beanstalkc/blob/master/TUTORIAL.mkd
The main differences, API wise are:
-
where number of seconds is expected pystalkd also accepts a timedelta object
-
you can temporarily watch and use a tube using the
with
keyword
print(c.using()) # "default"
with c.temporary_use("test"):
print(c.using()) # "test"
print(c.using()) # "default"
print(c.watching()) # ["default"]
with c.temporary_use("test"):
print(c.watching()) # ["default", "test"]
print(c.watching()) # ["default"]
- you also have access to the "bytes" API.
To maintain compatibility with beanstalkc the API worked only with strings but now
you can use the functions ending in "_bytes" (internally this is controlled using the
raw
paramater) to work directly with bytes
from os import urandom
test_bytes = urandom(50)
job_id = c.put_bytes(test_bytes)
job = c.reserve_bytes(0)
print(job.body) # b'i\x91\xdf\xf8\x1b?zj....'
job_id2 = c.put("string")
job2 = c.reserve_bytes(0)
print(job2.body) # b'string'
Note: you can use reserve_bytes
with put
and get the raw string (not encoded), but the other way around might cause problems
Tests
To test with default host and port (localhost, 11300):
python3 test.py
To test on a specific host (if port is not specified 11300 is used)
python3 test.py host [port]
License
Copyright (C) 2008-2014 Andreas Bolka.
Copyright (C) 2015-2016 Gabriel Menezes. Licensed under the MIT.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pystalkd-1.3.0.tar.gz
.
File metadata
- Download URL: pystalkd-1.3.0.tar.gz
- Upload date:
- Size: 11.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f8ba5b7801ecd812143046fb2d76fa83d161e9fce5d6996bd32d046e22fb211b |
|
MD5 | 7b02ec5978d2fecf3cb2c63d391e496d |
|
BLAKE2b-256 | 2f4f3ce533d50aa6a55b105ce209c0dc14f68c66553e20cc83bcbf9d88741ff0 |
File details
Details for the file pystalkd-1.3.0-py3-none-any.whl
.
File metadata
- Download URL: pystalkd-1.3.0-py3-none-any.whl
- Upload date:
- Size: 11.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 810bd9727f49fbd736fb560daf5525b73227eda870216881909c76b73675c814 |
|
MD5 | ece5e3d2853cdbc25d3e186a40bb9890 |
|
BLAKE2b-256 | cf6698f0a84934216420b4c681a020dd9f66c66807ea641df0fb5e0258635b8e |