A Python package for reducing mapping-like objects using reducer objects, implemented in Rust.
Project description
dict-sourcer
Build for PyPi
docker run --rm -v "$(pwd)":/ci quay.io/pypa/manylinux2014_x86_64 /ci/build.sh pypi_publish.sh
or
python setup.py sdist bdist_wheel
export TWINE_USERNAME=__token__
export TWINE_PASSWORD=<password>
twine upload target/wheels/*
Notice
When upgrading version should be changes in:
- setup.py
- Cargo.toml
- pyproject.toml
Example use
from event_sourcer import reduce_dict
class SumReducer:
def init(self):
return 0
def update(self, acc, value):
return acc + value
def finalize(self, acc):
return acc
class AvgReducer:
def init(self):
return (0, 0) # (total, count)
def update(self, acc, value):
total, count = acc
return (total + value, count + 1)
def finalize(self, acc):
total, count = acc
return total / count if count else None
# Any object supporting __getitem__ will work; here we use dicts.
def generate_objects():
yield {"a": 1, "b": 4}
yield {"a": 1, "c": 4}
reducers = {
"a": SumReducer(),
"b": AvgReducer(),
"c": AvgReducer(),
"d": SumReducer(),
}
result = reduce_dict(generate_objects(), reducers)
print(result)
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dict_sourcer-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: dict_sourcer-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 261.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f105cb2aeb846b464898ae887e3fee6cd26f8fc9781ed78fcb9d1e743c140b7
|
|
| MD5 |
7e03353af6d8ed4b0f5834cae5ae5b17
|
|
| BLAKE2b-256 |
e00afaefdb010de1849711c706ab9fa8fe852df712f2804649ecc2a1376a85ea
|