Collect objects and apply a function once the buffer is full or expired
Project description
___ __ _____________
/ _ )/ / / / __/ __/ _ \
/ _ / /_/ / _// _// , _/
/____/\____/_/ /_/ /_/|_|
buffr: simple buffering mechanism for Python
Testing | |
Package | |
Meta | |
Social |
buffr provides a simple mechanism that allows you to collect values in a buffer. Once a certain time has passed or the buffer's capacity is reached, all values will pe processed with the provided function. As an analogy: don't process each drop, wait till the bucket is full and process that.
pip install buffr
Table of Contents
- Main Features
- Usage Example
- Installation
- Dependencies
- License
- Documentation
- Development
- Contributing to Buffr
Main Features
- 🐍 Pure Python
- 🖌 Eadily configurable
- 👨🎨 User-friendly
Use case
You listen to a queue for messages that you'll process and insert into the database. If we receive a message each second, this means that we have to perform an insert 60 times a second.
In this case we could use Buffr to collect messages for 30 seconds before batch inserting them. This reduces the number of costly database-operations from 60 per minute to just 2.
Usage Example
Creating a Buffr is easy.
from buffr import Buffr
# Define the processor
def processing_fn(items:List):
for item in items:
print(item * 2)
# Create a buffr
buffr = Buffr(max_capacity=100, buffer_ttl=30, flush_func=processing_fn)
# Add some values to the Buffr
for i in range(4):
buffr.add(i)
The Buffr defined above will flush in three cases:
- the capacity of 100 items is exceeded
- 30 seconds pass (
buffr_ttl
) buffr.flush()
is called
Installation
pip install buffr
The source code is currently hosted on GitHub at: https://github.com/mike-huls/buffr
Binary installers for the latest released version are available at the Python Package Index (PyPI).
Dependencies
Buffr has no dependencies
License
Documentation
🔨 Under construction
Development
Find the changelog and list of upcoming features here.
Contributions are always welcome; feel free to submit bug reports, bug fixes, feature requests, documentation improvements or enhancements!
Project details
Release history Release notifications | RSS feed
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 buffr-0.0.2.tar.gz
.
File metadata
- Download URL: buffr-0.0.2.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.4.29
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1048fda5c861169c9472d54c4573464480833fba68fc8dead1bf3ebd2a1de16 |
|
MD5 | 5c70ca1db79b81378dcb690a5825b394 |
|
BLAKE2b-256 | 92609bbc714a53bb975c995612eb710df328845b387e76448a975419d8068ba5 |
File details
Details for the file buffr-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: buffr-0.0.2-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.4.29
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a66c05c415067afaf65d12092100cb8415e8edbc7c3950ca15db79ad1196102 |
|
MD5 | d4e5be28a564b6e27da68b68991aceae |
|
BLAKE2b-256 | e7a505a82385b1f42b542be10000e1989407e4ad04e297448f7fbe79757a4d4f |