freshcrate
Skin:/
Home > Frameworks > pathway

pathway

Python ETL framework for stream processing, real-time analytics, LLM pipelines, and RAG.

Why this rank:Strong adoptionRecent releaseHealthy release cadence

Description

Python ETL framework for stream processing, real-time analytics, LLM pipelines, and RAG.

README

ubuntu
Last release PyPI version PyPI downloads License: BSL
chat on Discord follow on Twitter follow on LinkedIn Awesome Python Pathway Guru
Getting Started | Deployment | Documentation and Support | Blog | License

Pathway is a Python ETL framework for stream processing, real-time analytics, LLM pipelines, and RAG.

Pathway comes with an easy-to-use Python API, allowing you to seamlessly integrate your favorite Python ML libraries. Pathway code is versatile and robust: you can use it in both development and production environments, handling both batch and streaming data effectively. The same code can be used for local development, CI/CD tests, running batch jobs, handling stream replays, and processing data streams.

Pathway is powered by a scalable Rust engine based on Differential Dataflow and performs incremental computation. Your Pathway code, despite being written in Python, is run by the Rust engine, enabling multithreading, multiprocessing, and distributed computations. All the pipeline is kept in memory and can be easily deployed with Docker and Kubernetes.

You can install Pathway with pip:

pip install -U pathway

For any questions, you will find the community and team behind the project on Discord.

Use-cases and templates

Ready to see what Pathway can do?

Try one of our easy-to-run examples!

Available in both notebook and docker formats, these ready-to-launch examples can be launched in just a few clicks. Pick one and start your hands-on experience with Pathway today!

Event processing and real-time analytics pipelines

With its unified engine for batch and streaming and its full Python compatibility, Pathway makes data processing as easy as possible. It's the ideal solution for a wide range of data processing pipelines, including:

AI Pipelines

Pathway provides dedicated LLM tooling to build live LLM and RAG pipelines. Wrappers for most common LLM services and utilities are included, making working with LLMs and RAGs pipelines incredibly easy. Check out our LLM xpack documentation.

Don't hesitate to try one of our runnable examples featuring LLM tooling. You can find such examples here.

Features

  • A wide range of connectors: Pathway comes with connectors that connect to external data sources such as Kafka, GDrive, PostgreSQL, or SharePoint. Its Airbyte connector allows you to connect to more than 300 different data sources. If the connector you want is not available, you can build your own custom connector using Pathway Python connector.
  • Stateless and stateful transformations: Pathway supports stateful transformations such as joins, windowing, and sorting. It provides many transformations directly implemented in Rust. In addition to the provided transformation, you can use any Python function. You can implement your own or you can use any Python library to process your data.
  • Persistence: Pathway provides persistence to save the state of the computation. This allows you to restart your pipeline after an update or a crash. Your pipelines are in good hands with Pathway!
  • Consistency: Pathway handles the time for you, making sure all your computations are consistent. In particular, Pathway manages late and out-of-order points by updating its results whenever new (or late, in this case) data points come into the system. The free version of Pathway gives the "at least once" consistency while the enterprise version provides the "exactly once" consistency.
  • Scalable Rust engine: with Pathway Rust engine, you are free from the usual limits imposed by Python. You can easily do multithreading, multiprocessing, and distributed computations.
  • LLM helpers: Pathway provides an LLM extension with all the utilities to integrate LLMs with your data pipelines (LLM wrappers, parsers, embedders, splitters), including an in-memory real-time Vector Index, and integrations with LLamaIndex and LangChain. You can quickly build and deploy RAG applications with your live documents.

Getting started

Installation

Pathway requires Python 3.10 or above.

You can install the current release of Pathway using pip:

$ pip install -U pathway

โš ๏ธ Pathway is available on MacOS and Linux. Users of other systems should run Pathway on a Virtual Machine.

Example: computing the sum of positive values in real time.

import pathway as pw

# Define the schema of your data (Optional)
class InputSchema(pw.Schema):
  value: int

# Connect to your data using connectors
input_table = pw.io.csv.read(
  "./input/",
  schema=InputSchema
)

#Define your operations on the data
filtered_table = input_table.filter(input_table.value>=0)
result_table = filtered_table.reduce(
  sum_value = pw.reducers.sum(filtered_table.value)
)

# Load your results to external systems
pw.io.jsonlines.write(result_table, "output.jsonl")

# Run the computation
pw.run()

Run Pathway in Google Colab.

You can find more examples here.

Deployment

Locally

To use Pathway, you only need to import it:

import pathway as pw

Now, you can easily create your processing pipeline, and let Pathway handle the updates. Once your pipeline is created, you can launch the computation on streaming data with a one-line command:

pw.run()

You can then run your Pathway project (say, main.py) just like a normal Python script: $ python main.py. Pathway comes with a monitoring dashboard that allows you to keep track of the number of messages sent by each connector and the latency of the system. The dashboard also includes log messages.

Pathway dashboard

Alternatively, you can use the pathway'ish version:

$ pathway spawn python main.py

Pathway natively supports multithreading. To launch your application with 3 threads, you can do as follows:

$ pathway spawn --threads 3 python main.py

To jumpstart a Pathway project, you can use our cookiecutter template.

Docker

You can easily run Pathway using docker.

Pathway image

You can use the Pathway docker image, using a Dockerfile:

FROM pathwaycom/pathway:latest

WORKDIR /app

COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt

COPY . .

CMD [ "python", "./your-script.py" ]

You can then build and run the Docker image:

docker build -t my-pathway-app .
docker run -it --rm --name my-pathway-app my-pathway-app

Run a single Python script

When dealing with single-file projects, creating a full-fledged Dockerfile might seem unnecessary. In such scenarios, you can execute a Python script directly using the Pathway Docker image. For example:

docker run -it --rm --name my-pathway-app -v "$PWD":/app pathwaycom/pathway:latest python my-pathway-app.py

Python docker image

You can also use a standard Python image and install Pathway using pip with a Dockerfile:

FROM --platform=linux/x86_64 python:3.10

RUN pip install -U pathway
COPY ./pathway-script.py pathway-script.py

CMD ["python", "-u", "pathway-script.py"]

Kubernetes and cloud

Docker containers are ideally suited for deployment on the cloud with Kubernetes. If you want to scale your Pathway application, you may be interested in our Pathway for Enterprise. Pathway for Enterprise is specially tailored towards end-to-end data processing and real time intelligent analytics. It scales using distributed computing on the cloud and supports distributed Kubernetes deployment, with external persistence setup.

You can easily deploy Pathway using services like Render: see how to deploy Pathway in a few clicks.

If you are interested, don't hesitate to contact us to learn more.

Performance

Pathway is made to outperform state-of-the-art technologies designed for streaming and batch data processing tasks, including: Flink, Spark, and Kafka Streaming. It also makes it possible to implement a lot of algorithms/UDF's in streaming mode which are not readily supported by other streaming frameworks (especially: temporal joins, iterative graph algorithms, machine learning routines).

If you are curious, here are some benchmarks to play with.

WordCount Graph

Documentation and Support

The entire documentation of Pathway is available at pathway.com/developers/, including the API Docs.

If you have any question, don't hesitate to open an issue on GitHub, join us on Discord, or send us an email at contact@pathway.com.

๐Ÿค Featured Collaborations & Integrations

We build cutting-edge data processing pipelines and co-promote solutions that push the boundaries of what's possible with Python and streaming data. Meet the people helping us shape the future of data engineering.

Project Description
Databento A simpler, faster way to get market data.
LangChain LangChain is the platform for agent engineering.
LlamaIndex The developer-trusted framework for building context-aware AI agents.
MinIO MinIO is a high-performance, S3 compatible object store, open sourced under GNU AGPLv3 license.
PaddleOCR PaddleOCR is an industry-leading, production-ready OCR and document AI engine, offering end-to-end solutions from text extraction to intelligent document understanding.
Redpanda Build, operate, and govern streaming and AI applications without the complexity of Kafka.

License

Pathway is distributed on a BSL 1.1 License which allows for unlimited non-commercial use, as well as use of the Pathway package for most commercial purposes, free of charge. Code in this repository automatically converts to Open Source (Apache 2.0 License) after 4 years. Some public repos which are complementary to this one (examples, libraries, connectors, etc.) are licensed as Open Source, under the MIT license.

Contribution guidelines

If you develop a library or connector which you would like to integrate with this repo, we suggest releasing it first as a separate repo on a MIT/Apache 2.0 license.

For all concerns regarding core Pathway functionalities, Issues are encouraged. For further information, don't hesitate to engage with Pathway's Discord community.

Release History

VersionChangesUrgencyDate
v0.31.0### Added - `pw.io.sqlite.write` connector, which writes a Pathway table into a SQLite database file. Supports two modes: `stream_of_changes` (default) appends each event alongside `time`/`diff` metadata columns, while `snapshot` maintains the current state of the table via `INSERT ... ON CONFLICT DO UPDATE` on insertions and `DELETE` on retractions, keyed on the `primary_key` parameter. Values are encoded using the same storage-class mapping that `pw.io.sqlite.read` accepts, so `write` / `readHigh5/25/2026
v0.30.1### Added - `pw.io.rabbitmq.read` and `pw.io.rabbitmq.write` connectors for reading from and writing to RabbitMQ Streams. Supports JSON, plaintext, and raw formats; streaming and static modes; persistence with offset recovery; dynamic topics (writing to different streams per row); `start_from` parameter (`"beginning"`, `"end"`, or `"timestamp"`); TLS configuration; and message metadata including AMQP 1.0 properties and application properties. Header values are JSON-encoded for round-trip compatHigh4/23/2026
v0.30.0### Added - `pw.io.mongodb.read` connector, which reads data from a MongoDB collection. The connector first delivers a full snapshot of the collection and then, if the streaming mode is used, subscribes to the change stream to receive incremental updates in real time. - `pw.io.postgres.read` connector, which reads data from a PostgreSQL table directly by parsing the Write-Ahead Log (WAL). - `pw.io.postgres.write` and `pw.io.postgres.read` now support serialization/deserialization of `np.ndarrMedium3/24/2026
v0.29.1### Added - `pw.io.kafka.read` and `pw.io.kafka.write` connectors now support OAUTHBEARER authentication. - `pw.io.mongodb.write` connector now supports an `output_table_type` parameter with two modes: `stream_of_changes` (default) and `snapshot`. In `snapshot` mode, the connector maintains the current state of the Pathway table in MongoDB using the `_id` field as the primary key, while `stream_of_changes` preserves the existing behavior by writing all events with `time` and `diff` flags to reLow2/16/2026
v0.29.0### Added - Pathway Web Dashboard providing user-friendly interface for monitoring Pathway pipelines in real time with interactive graph plotting and latency/memory metrics. - `pw.io.kafka.read` now includes message headers in the parsed metadata. The headers are available at the top level of the metadata in the `headers` array. Each element of the array is a pair consisting of a string header name and a base64-encoded header value. If the header is null, the corresponding value is also null. Low1/22/2026
v0.28.0### Added - `pw.io.kafka.read` and `pw.io.redpanda.read` now allow each schema field to be specified as coming from either the message key or the message value. - Connector groups now support the specification of an idle duration. When this is set, if a source does not provide any data for the specified period of time, it will be excluded from the group until it produces data again. - It is now possible to assign priorities to sources within a connector group. When a priority is set, it ensurLow1/8/2026
v0.27.1 ## [0.27.1] - 2025-12-08 ### Added - `pw.Table.filter_out_results_of_forgetting` method, allowing to revert the effects of forgetting at a later stage. ### Changed - The MCP server `tool` method now allows to pass an optional `description`, default value โ€‹โ€‹being kept as the handler's docstring. - `pw.io.kafka.read` and `pw.io.redpanda.read` now create a `key` column storing the contents of the message keys.Low12/8/2025
v0.27.0### Added - JetStream extension is now supported in both NATS read and write connectors. - The Iceberg connectors now support Glue as a catalog backend. - New `Table.add_update_timestamp_utc` function for tracking update time of rows in the table ### Changed - **BREAKING** The API for the Iceberg connectors has changed. The `catalog` parameter is now required in both `pw.io.iceberg.read` and `pw.io.iceberg.write`. This parameter can be either of type `pw.io.iceberg.RestCatalog` or `pw.io.Low11/13/2025
v0.26.4### Added - New external integration with [Qdrant](https://qdrant.tech/). - `pw.io.mysql.write` method for writing to MySQL. It supports two output table types: stream of changes and a realtime-updated data snapshot. ### Changed - `pw.io.deltalake.read` now accepts the `start_from_timestamp_ms` parameter for non-append-only tables. In this case, the connector will replay the history of changes in the table version by version starting from the state of the table at the given timestamp. The Low10/16/2025
v0.26.3### Added - New parser `pathway.xpacks.llm.parsers.PaddleOCRParser` supporting parsing of PDF, PPTX and images.Low10/3/2025
v0.26.2### Added - `pw.io.gdrive.read` now supports the `"only_metadata"` format. When this format is used, the table will contain only metadata updates for the tracked directory, without reading object contents. - Detailed metrics can now be exported to SQLite. Enable this feature using the environment variable `PATHWAY_DETAILED_METRICS_DIR` or via `pw.set_monitoring_config()`. - `pw.io.kinesis.read` and `pw.io.kinesis.write` methods for reading from and writing to AWS Kinesis. ### Fixed - A buLow10/1/2025
v0.26.1### Added - `pw.Table.forget` to remove old (in terms of event time) entries from the pipeline. - `pw.Table.buffer`, a stateful buffering operator that delays entries until `time_column <= max(time_column) - threshold` condition is met. - `pw.Table.ignore_late` to filter out old (in terms of event time) entries. - Rows batching for async UDFs. It can be enabled with `max_batch_size` parameter. ### Changed - `pw.io.subscribe` and `pw.io.python.write` now work with async callbacks. - The Low8/28/2025
v0.26.0### Added - `path_filter` parameter in `pw.io.s3.read` and `pw.io.minio.read` functions. It enables post-filtering of object paths using a wildcard pattern (`*`, `?`), allowing exclusion of paths that pass the main `path` filter but do not match `path_filter`. - Input connectors now support backpressure control via `max_backlog_size`, allowing to limit the number of read events in processing per connector. This is useful when the data source emits a large initial burst followed by smaller, incLow8/14/2025
v0.25.1### Added - `pw.xpacks.llm.mcp_server.PathwayMcp` that allows serving `pw.xpacks.llm.document_store.DocumentStore` and `pw.xpacks.llm.question_answering` endpoints as MCP (Model Context Protocol) tools. - `pw.io.dynamodb.write` method for writing to Dynamo DB.Low7/24/2025
v0.24.0### Added - `pw.io.mqtt.read` and `pw.io.mqtt.write` methods for reading from and writing to MQTT. ### Changed - `pw.xpacks.llm.embedders.SentenceTransformerEmbedder` and `pw.xpacks.llm.llms.HFPipelineChat` are now computed in batches. The maximum size of a single batch can be set in the constructor with the argument `max_batch_size`. - **BREAKING** Arguments `api_key` and `base_url` for `pw.xpacks.llm.llms.OpenAIChat` can no longer be set in the `__call__` method, and instead, if needed, Low7/17/2025
v0.24.1### Added - Confluent Schema Registry support in Kafka and Redpanda input and output connectors. ### Changed - `pw.io.airbyte.read` will now retry the pip install command if it fails during the installation of a connector. It only applies when using the PyPI version of the connector, not the Docker one.Low7/17/2025
v0.25.0### Added - `pw.io.questdb.write` method for writing to Quest DB. - `pw.io.fs.read` now supports the `"only_metadata"` format. When this format is used, the table will contain only metadata updates for the tracked directory, without reading file contents. ### Changed - **BREAKING** The Elasticsearch and BigQuery connectors have been moved to the Scale license tier. You can obtain the Scale tier license for free at https://pathway.com/get-license. - **BREAKING** `pw.io.fs.read` no longer aLow7/17/2025
v0.23.0### Changed - **BREAKING**: To use `pw.sql` you now have to install `pathway[sql]`. ### Fixed - `pw.io.deltalake.read` now correctly reads data from partitioned tables in all cases. - Added retries for all cloud-based persistence backend operations to improve reliability.Low6/12/2025
v0.22.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. - **BREAKILow6/5/2025
v0.21.6### Added - `sort_by` method to `pw.BaseCustomAccumulator` that allows to sort rows within a single batch. When `sort_by` is defined the rows are reduced in the order specified by the `sort_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`. TLow5/29/2025
v0.21.5### Changed - `pw.io.deltalake.read` now processes Delta table version updates atomically, applying all changes together in a single minibatch. - The panel widget for table visualization now has a horizontal scroll bar for large tables. - Added the possibility to return value from any column from `pw.reducers.argmax` and `pw.reducers.argmin`, not only `id`. ### Fixed - `pw.reducers.argmax` and `pw.reducers.argmin` work correctly with the result of `pw.Table.windowby`. Low5/9/2025
v0.21.4### Added - `pw.io.kafka.read` and `pw.io.redpanda.read` now support static mode. ### Changed - The `inactivity_detection` function is now a method for append only tables. It no longer relies on an event timestamp column but now uses table processing times to detect inactivity periods.Low4/24/2025
v0.21.3### Fixed - The performance of input connectors is optimized in certain cases. - The panel widget for table visualization does now a better formatting for timestamps and missing values. The pagination was also updated to better fit the widget and the default sorters in snapshot mode have been fixed. Low4/24/2025
v0.21.2### Added - Added synchronization group mechanism to align multiple data sources based on selected columns. It can be accessed with `pw.io.register_input_synchronization_group`. - `pw.io.register_input_synchronization_group` now supports the following types of columns: `pw.DateTimeUtc`, `pw.DateTimeNaive`, `pw.DateTimeDuration`, and `int`. ### Changed - Enhanced error reporting for runtime errors across most operators, providing a trace that simplifies identifying the root cause. ### FiLow4/10/2025
v0.21.1### Changed - Input connectors now throttle parsing error messages if their share is more than 10% of the parsing attempts. - New flag `return_status` for `inputs_query` method in `pw.xpacks.llm.DocumentStore`. If set to True, DocumentStore returns the status of indexing for each file. Low3/28/2025
v0.21.0### Added - All Pathway types can now be serialized to CSV using `pw.io.csv.write` and deserialized back using `pw.io.csv.read`. - `pw.io.csv.read` now parses null-values in data when it can be done unambiguously. ### Changed - **BREAKING**: Updated endpoints in `pw.xpacks.llm.question_answering.BaseRAGQuestionAnswerer`: - Deprecated: `/v1/pw_list_documents`, `/v1/pw_ai_answer` - New: `/v2/list_documents`, `/v2/answer` - RAG methods under the `pw.xpacks.llm.question_answering.RAGCliLow3/19/2025
v0.20.1### Added - Added `RecursiveSplitter` - `pw.io.deltalake.write` now checks that the schema of the target table Delta Table corresponds to the schema of the Pathway table that is sent for the output. If the schemas differ, a human-readable error message is produced. Low3/7/2025
v0.20.0## [0.20.0] - 2025-02-25 ### Added - Added structure-aware chunking for `DoclingParser`. - Added `table_parsing_strategy` for `DoclingParser`. - Column expressions `as_int()`, `as_float()`, `as_str()`, and `as_bool()` now accept additional arguments, `unwrap` and `default`, to simplify null handling. - Support for python tuples in expressions. ### Changed - **BREAKING**: Changed the argument in `DoclingParser` from `parse_images` (bool) into `image_parsing_strategy` (Literal["llm"] | Low2/25/2025
v0.19.0### Added - `LLMReranker` now supports custom prompts as well as custom response parsers allowing for other ranking scales apart from default 1-5. - `pw.io.kafka.write` and `pw.io.nats.write` now support `ColumnReference` as a topic name. When a `ColumnReference` is provided, each message's topic is determined by the corresponding column value. - `pw.io.python.write` accepting `ConnectorObserver` as an alternative to `pw.io.subscribe`. - `pw.io.iceberg.read` and `pw.io.iceberg.write` now supLow2/20/2025
v0.18.0### Added - `pw.io.postgres.write` and `pw.io.postgres.write_snapshot` now handle serialization of `PyObjectWrapper` and `Timedelta` properly. - New chunking options in `pathway.xpacks.llm.parsers.UnstructuredParser` - Now all Pathway types can be serialized into JSON and consistently deserialized back. - `table.col.dt.to_duration` converting an integer into a `pw.Duration`. - `pw.Json` now supports storing datetime and duration type values in ISO format. ### Changed - **BREAKING**: ChaLow2/7/2025
v0.17.0### Added - `pw.io.iceberg.read` method for reading Apache Iceberg tables into Pathway. - methods `pw.io.postgres.write` and `pw.io.postgres.write_snapshot` now accept an additional argument `init_mode`, which allows initializing the table before writing. - `pw.io.deltalake.read` now supports serialization and deserialization for all Pathway data types. - New parser `pathway.xpacks.llm.parsers.DoclingParser` supporting parsing of pdfs with tables and images. - Output connectors now include Low1/31/2025
v0.16.4### Fixed - Google Drive connector in static mode now correctly displays in jupyter visualizations.Low1/9/2025
v0.16.3### Added - `pw.io.iceberg.write` method for writing Pathway tables into Apache Iceberg. ### Changed - values of non-deterministic UDFs are not stored in tables that are `append_only`. - `pw.Table.ix` has better runtime error message that includes id of the missing row. ### Fixed - temporal behaviors in temporal operators (`windowby`, `interval_join`) now consume no CPU when no data passes through them. Low1/2/2025
v0.16.2### Added - `pw.xpacks.llm.prompts.RAGPromptTemplate`, set of prompt utilities that enable verifying templates and creating UDFs from prompt strings or callables. - `pw.xpacks.llm.question_answering.BaseContextProcessor` streamlines development and tuning of representing retrieved context documents to the LLM. - `pw.io.kafka.read` now supports `with_metadata` flag, which makes it possible to attach the metadata of the Kafka messages to the table entries. - `pw.io.deltalake.read` can now streLow1/2/2025
v0.16.1### Changed - `pw.io.s3.read` now monitors object deletions and modifications in the S3 source, when ran in streaming mode. When an object is deleted in S3, it is also removed from the engine. Similarly, if an object is modified in S3, the engine updates its state to reflect those changes. - `pw.io.s3.read` now supports `with_metadata` flag, which makes it possible to attach the metadata of the source object to the table entries. ### Fixed - `pw.xpacks.llm.document_store.DocumentStore` no Low12/12/2024
v0.16.0# Changelog All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] ## [0.16.0] - 2024-11-29 ### Added - `pw.xpacks.llm.document_store.SlidesDocumentStore`, which is a subclass of `pw.xpacks.llm.document_store.DocumentStore` customized for retrieving slides from presentations. - `pw.temporal.inactivity_detection` and `pw.temporal.utc_now` functions allowing for alertingLow11/29/2024
v0.15.4### Added - `pw.io.kafka.read` now supports reading entries starting from a specified timestamp. - `pw.io.nats.read` and `pw.io.nats.write` methods for reading from and writing Pathway tables to NATS. ### Changed - `pw.Table.diff` now supports setting `instance` parameter that allows computing differences for multiple groups. - `pw.io.postgres.write_snapshot` now keeps the Postgres table fully in sync with the current state of the table in Pathway. This means that if an entry is deleted iLow11/18/2024
v0.15.3### Added - `pw.io.mongodb.write` connector for writing Pathway tables in MongoDB. - `pw.io.s3.read` now supports downloading objects from an S3 bucket in parallel. ### Changed - `pw.io.fs.read` performance has been improved for directories containing a large number of files. Low11/7/2024
v0.15.2### Added - `pw.io.deltalake.read` now supports custom S3 Delta Lakes with HTTP endpoints. - `pw.io.deltalake.read` now supports specifying both a custom endpoint and a custom region for Delta Lakes via `pw.io.s3.AwsS3Settings`. ### Changed - Indices in `pathway.stdlib.indexing.nearest_neighbors` can now work also on numpy arrays. Previously they only accepted `list[float]`. Working with numpy arrays improves memory efficiency. - `pw.io.s3.read` has been optimized to minimize new object rLow10/25/2024
v0.15.1### Fixed - `pw.temporal.session` and `pw.temporal.asof_join` now correctly works with multiple entries with the same time. - Fixed an issue in `pw.stdlib.indexing` where filters would cause runtime errors while using `HybridIndexFactory`. Low10/4/2024
v0.15.0### Added - **Experimental** A ``pw.xpacks.llm.document_store.DocumentStore`` to process and index documents. - ``pw.xpacks.llm.servers.DocumentStoreServer`` used to expose REST server for retrieving documents from ``pw.xpacks.llm.document_store.DocumentStore``. - `pw.xpacks.stdlib.indexing.HybridIndex` used for querying multiple indices and combining their results. - `pw.io.airbyte.read` now also supports streams that only operate in `full_refresh` mode. ### Changed - Running servers foLow9/12/2024
v0.14.3### Fixed - `pw.io.deltalake.read` and `pw.io.deltalake.write` now correctly work with lakes hosted in S3 over min.io, Wasabi and Digital Ocean. ### Added - The Pathway CLI command `spawn` can now execute code directly from a specified GitHub repository. - A new CLI command, `spawn-from-env`, has been added. This command runs the Pathway CLI `spawn` command using arguments provided in the `PATHWAY_SPAWN_ARGS` environment variable. Low8/22/2024
v0.14.2### Fixed - Switched `pw.xpacks.llm.embedders.GeminiEmbedder` to be sync to resolve compatibility issues with the Google Colab runs. - Pinned `surya-ocr` module version for stability. Low8/6/2024
v0.14.1### Added - `pw.xpacks.llm.embedders.GeminiEmbedder` which is a wrapper for Google Gemini Embedding services. Low8/5/2024
v0.14.0### Fixed - `pw.debug.table_to_pandas` now exports `int | None` columns correctly. ### Changed - `pw.io.airbyte.read` can now be used with Airbyte connectors implemented in Python without requiring Docker. - **BREAKING**: UDFs now verify the type of returned values at runtime. If it is possible to cast a returned value to a proper type, the values is cast. If the value does not match the expected type and can't be cast, an error is raised. - **BREAKING**: `pw.reducers.ndarray` reducer reqLow7/25/2024
v0.13.2### Added - `pw.io.deltalake.read` now supports S3 data sources. - `pw.xpacks.llm.parsers.ImageParser` which allows parsing images with the vision LMs. - `pw.xpacks.llm.parsers.SlideParser` that enables parsing PDF and PPTX slides with the vision LMs. - `pw.xpacks.llm.parsers.question_answering.RAGClient`, Python client for Pathway hosted RAG apps. - `pw.xpacks.llm.parsers.question_answeringDeckRetriever`, a RAG app that enables searching through slide decks with visual-heavy elements. #Low7/8/2024
v0.13.1### Added - `pw.io.kafka.read` now accepts an autogenerate_key flag. This flag determines the primary key generation policy to apply when reading raw data from the source. You can either use the key from the Kafka message or have Pathway autogenerate one. - `pw.io.deltalake.read` input connector that fetches changes from DeltaLake into a Pathway table. - `pw.xpacks.llm.parsers.OpenParse` which allows parsing tables and images in PDFs. ### Fixed - All S3 input connectors (including S3, MinLow6/27/2024
v0.13.0### Added - `pw.io.deltalake.write` now supports S3 destinations. ### Changed - `pw.debug.compute_and_print` now allows passing more than one table. - **BREAKING**: `path` parameter in `pw.io.deltalake.write` renamed to `uri`. ### Fixed - A bug in `pw.Table.deduplicate`. If `persistent_id` is not set, it is no longer generated in `pw.PersistenceMode.SELECTIVE_PERSISTING` mode. Low6/13/2024
v0.12.0### Added - `pw.PyObjectWrapper` that enables passing python objects of any type to the engine. - `cache_strategy` option added for `pw.io.http.rest_connector`. It enables cache configuration, which is useful for duplicated requests. - `allow_misses` argument to `Table.ix` and `Table.ix_ref` methods which allows for filling rows with missing keys with None values. - `pw.io.deltalake.write` output connector that streams the changes of a given table into a DeltaLake storage. - `pw.io.airbyte.Low6/10/2024
v0.11.2### Added - `pathway.assert_table_has_schema` and `pathway.table_transformer` now accept `allow_subtype` argument, which, if True, allows column types in the Table be subtypes of types in the Schema. - `next` method to `pw.io.python.ConnectorSubject` (python connector) that enables passing values of any type to the engine, not only values that are json-serializable. The `next` method should be the preferred way of passing values from the python connector. ### Changed - The `format` argumenLow5/27/2024
v0.11.1### Added - `query` and `query_as_of_now` of `pathway.stdlib.indexing.data_index.DataIndex` now accept in `metadata_column` parameter a column with data of type `str | None`. - `pathway.xpacks.connectors.sharepoint` module under Pathway for Business License. Low5/16/2024
v0.11.0### Added - Embedders in the LLM xpack now have method `get_embedding_dimension` that returns number of dimension used by the chosen embedder. - `pathway.stdlib.indexing.nearest_neighbors`, with implementations of `pathway.stdlib.indexing.data_index.InnerIndex` based on k-NN via LSH (implemented in Pathway), and k-NN provided by USearch library. - `pathway.stdlib.indexing.vector_document_index`, with a few predefined instances of `pathway.stdlib.indexing.data_index.DataIndex`. - `pathway.stdLow5/10/2024

Dependencies & License Audit

Loading dependencies...

Similar Packages

llm-streamStream responses from OpenAI and Anthropic models with lightweight C++ tools for efficient large language model integration.main@2026-06-05
deer-flowAn open-source long-horizon SuperAgent harness that researches, codes, and creates. With the help of sandboxes, memories, tools, skill, subagents and message gateway, it handles different levels of tamain@2026-06-06
Code2MCP๐Ÿš€ Transform existing codebases into MCP services with ease using Code2MCP's intelligent automation and minimal intrusion design.main@2026-06-06
rocketride-serverHigh-performance AI pipeline engine with a C++ core and 50+ Python-extensible nodes. Build, debug, and scale LLM workflows with 13+ model providers, 8+ vector databases, and agent orchestration, all fvscode-v1.2.0
hypothesisThe property-based testing library for Pythonv6.155.2

More in Frameworks

langchainThe agent engineering platform
deer-flowAn open-source long-horizon SuperAgent harness that researches, codes, and creates. With the help of sandboxes, memories, tools, skill, subagents and message gateway, it handles different levels of ta
tqdmFast, Extensible Progress Meter
simBuild, deploy, and orchestrate AI agents. Sim is the central intelligence layer for your AI workforce.