Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
pathway-0.21.6-cp310-abi3-manylinux_2_28_aarch64.whl | 2025-05-29 | 64.5 MB | |
pathway-0.21.6-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl | 2025-05-29 | 66.5 MB | |
pathway-0.21.6-cp310-abi3-macosx_11_0_arm64.whl | 2025-05-29 | 57.8 MB | |
pathway-0.21.6-cp310-abi3-macosx_10_15_x86_64.whl | 2025-05-29 | 60.4 MB | |
README.md | 2025-05-29 | 1.4 kB | |
v0.21.6 source code.tar.gz | 2025-05-29 | 189.6 MB | |
v0.21.6 source code.zip | 2025-05-29 | 192.6 MB | |
Totals: 7 Items | 631.5 MB | 0 |
Added
sort_by
method topw.BaseCustomAccumulator
that allows to sort rows within a single batch. Whensort_by
is defined the rows are reduced in the order specified by thesort_by
method. It can for example be used to process entries in the order of event time.
Changed
pw.Table.debug
now prints a whole row in a single line instead of printing each cell separately.- Calling functions without arguments in YAML configurations files is now deprecated in
pw.load_yaml
. To call the function a mapping should be passed, e.g. empty mapping as{}
. In the future!
syntax without any mapping will be used to pass function objects without calling them. - The license check error message now provides a more detailed explanation of the failure.
- When code is run using
pathway spawn
with multiple processes, if one process terminates with an error, all other processes will also be terminated. pw.xpacks.llm.vector_store.VectorStoreServer
is being deprecated, and it is now subclass ofpw.xpacks.llm.document_store.DocumentStore
. Public API is being kept the same, however users are encouraged to switch to usingDocumentStore
from now on.pw.xpacks.llm.vector_store.VectorStoreClient
is being deprecated in favor ofpw.xpacks.llm.document_store.DocumentStoreClient
.pw.io.deltalake.write
can now maintain the target table's snapshot on the output.