Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
pathway-0.22.0-cp310-abi3-manylinux_2_28_aarch64.whl | 2025-06-05 | 65.4 MB | |
pathway-0.22.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl | 2025-06-05 | 67.5 MB | |
pathway-0.22.0-cp310-abi3-macosx_11_0_arm64.whl | 2025-06-05 | 58.8 MB | |
pathway-0.22.0-cp310-abi3-macosx_10_15_x86_64.whl | 2025-06-05 | 61.4 MB | |
README.md | 2025-06-05 | 914 Bytes | |
v0.22.0 source code.tar.gz | 2025-06-05 | 189.6 MB | |
v0.22.0 source code.zip | 2025-06-05 | 192.6 MB | |
Totals: 7 Items | 635.3 MB | 0 |
Added
- Data persistence can now be configured to use Azure Blob Storage as a backend. An Azure backend instance can be created using
pw.persistence.Backend.azure
and included in the persistence config. - Added batching to UDFs. It is now possible to make UDFs operate on batches of data instead of single rows. To do so
max_batch_size
argument has to be set.
Changed
- BREAKING: when creating
pw.DateTimeUtc
it is now obligatory to pass the time zone information. - BREAKING: when creating
pw.DateTimeNaive
passing time zone information is not allowed. - BREAKING: expressions are now evaluated in batches. Generally, it speeds up the computations but might increase the memory usage if the intermediate state in the expressions is large.
Fixed
- Synchronization groups now correctly handle cases where the source file-like object is updated during the reading process.