Metadata-Version: 2.4
Name: libcudf-streaming-cu12
Version: 26.8.0
Summary: cuDF Streaming - GPU-accelerated streaming data processing (C++)
Author: NVIDIA Corporation
License-Expression: Apache-2.0
Classifier: Intended Audience :: Developers
Classifier: Topic :: Database
Classifier: Topic :: Scientific/Engineering
Classifier: Programming Language :: C++
Classifier: Environment :: GPU :: NVIDIA CUDA
Project-URL: Homepage, https://github.com/rapidsai/cudf
Requires-Python: >=3.11
Requires-Dist: libcudf-cu12==26.8.*
Requires-Dist: librapidsmpf-cu12==26.8.*
Requires-Dist: librmm-cu12==26.8.*
Description-Content-Type: text/markdown

# libcudf_streaming

libcudf_streaming is the C++ shared library wheel for cuDF Streaming, providing GPU-accelerated streaming data processing capabilities built on top of libcudf and librapidsmpf.

Most users should not need to install this package directly; it is automatically pulled in as a dependency of `cudf-streaming`.

This package provides `libcudf_streaming.so` and a Python `load_library()` helper to ensure the shared library and its dependencies are properly loaded at runtime.

## Installation

```bash
pip install libcudf-streaming-cu12  # For CUDA 12
pip install libcudf-streaming-cu13  # For CUDA 13
```

## Usage

```python
import libcudf_streaming

# Load the shared library and all dependencies
libcudf_streaming.load_library()
```
