经 AI Skill Hub 精选评估,Pathway 获评「强烈推荐」。在 GitHub 上收获超过 62.8k 颗 Star,这款AI工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.2 分,适合有一定技术背景的用户使用。
流式处理、实时分析、LLM管道的Python ETL框架
Pathway 是一款基于 Python 开发的开源工具,专注于 ETL、流式处理、实时分析 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
流式处理、实时分析、LLM管道的Python ETL框架
Pathway 是一款基于 Python 开发的开源工具,专注于 ETL、流式处理、实时分析 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 方式一:pip 安装(推荐)
pip install pathway
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install pathway
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/pathwaycom/pathway
cd pathway
pip install -e .
# 验证安装
python -c "import pathway; print('安装成功')"
# 命令行使用
pathway --help
# 基本用法
pathway input_file -o output_file
# Python 代码中调用
import pathway
# 示例
result = pathway.process("input")
print(result)
# pathway 配置文件示例(config.yml) app: name: "pathway" debug: false log_level: "INFO" # 运行时指定配置文件 pathway --config config.yml # 或通过环境变量配置 export PATHWAY_API_KEY="your-key" export PATHWAY_OUTPUT_DIR="./output"
Getting Started |
Deployment |
Documentation and Support |
Blog |
License
</p>
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](https://databento.com/blog/option-greeks) | A simpler, faster way to get market data. |
| [LangChain](https://docs.langchain.com/oss/python/integrations/vectorstores/pathway) | LangChain is the platform for agent engineering. |
| [LlamaIndex](https://developers.llamaindex.ai/python/examples/retrievers/pathway_retriever/) | The developer-trusted framework for building context-aware AI agents. |
| [MinIO](https://www.min.io/) | MinIO is a high-performance, S3 compatible object store, open sourced under GNU AGPLv3 license. |
| [PaddleOCR](https://github.com/PaddlePaddle/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](https://www.redpanda.com/blog/replace-kafka-redpanda-data-analysis-streaming) | Build, operate, and govern streaming and AI applications without the complexity of Kafka. |
Pathway Live Data Framework requires Python 3.10 or above.
You can install the current release of Pathway Live Data Framework using pip:
$ pip install -U pathway
⚠️ Pathway Live Data Framework is available on MacOS and Linux. Users of other systems should run Pathway Live Data Framework on a Virtual Machine.
You can easily run Pathway Live Data Framework using docker.
You can use the Pathway Live Data Framework 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
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 Live Data Framework Docker image. For example:
docker run -it --rm --name my-pathway-app -v "$PWD":/app pathwaycom/pathway:latest python my-pathway-app.py
You can also use a standard Python image and install Pathway Live Data Framework 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"]
Ready to see what Pathway Live Data Framework 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 Live Data Framework today!
```python import pathway as pw
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 Live Data Framework functionalities, Issues are encouraged. For further information, don't hesitate to engage with Pathway's Discord community.
class InputSchema(pw.Schema): value: int
With its unified engine for batch and streaming and its full Python compatibility, Pathway Live Data Framework makes data processing as easy as possible. It's the ideal solution for a wide range of data processing pipelines, including:
Pathway Live Data Framework 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.
Pathway是一个功能强大的Python ETL框架,适用于流式处理和实时分析
该工具使用 NOASSERTION 协议,商用场景请仔细阅读协议条款,必要时咨询法律意见。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
📄 NOASSERTION — 请查阅原始协议条款了解具体使用限制。
AI Skill Hub 点评:Pathway 的核心功能完整,质量优秀。对于AI 技术爱好者来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | pathway |
| Topics | ETL流式处理实时分析LLM |
| GitHub | https://github.com/pathwaycom/pathway |
| License | NOASSERTION |
| 语言 | Python |
收录时间:2026-07-02 · 更新时间:2026-07-02 · License:NOASSERTION · AI Skill Hub 不对第三方内容的准确性作法律背书。