Metadata-Version: 2.2
Name: compress-utils
Version: 0.5.0
Summary: Simple & high-performance compression utilities for Python
Keywords: compression,zlib,brotli,zstd,xz,lzma,utility,performance
Author-Email: Nicolas Dupont <nicolas@dupontcyborg.com>
License: MIT
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: C++
Classifier: Operating System :: OS Independent
Classifier: Topic :: System :: Archiving :: Compression
Classifier: Topic :: Software Development :: Libraries
Project-URL: Homepage, https://github.com/dupontcyborg/compress-utils
Project-URL: Documentation, https://github.com/dupontcyborg/compress-utils#readme
Project-URL: Repository, https://github.com/dupontcyborg/compress-utils
Project-URL: Bug Tracker, https://github.com/dupontcyborg/compress-utils/issues
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# compress-utils

[![PyPI version](https://badge.fury.io/py/compress-utils.svg)](https://badge.fury.io/py/compress-utils)
[![PyPI Downloads](https://static.pepy.tech/badge/compress-utils)](https://pepy.tech/projects/compress-utils)
[![Python Versions](https://img.shields.io/pypi/pyversions/compress-utils.svg)](https://pypi.org/project/compress-utils/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

A unified, high-performance interface for multiple compression algorithms across programming languages.

## Features

- **Multiple Algorithms**: Integrated support for Brotli, LZMA, XZ, zlib, and Zstandard
- **Consistent API**: Same interface across all supported algorithms
- **Cross-Language**: Core C++ library with language bindings for Python (and more to come)
- **Performance Focused**: Built to minimize overhead over native compression libraries

## Installation

```bash
pip install compress-utils
```

## Quick Start

### Object-Oriented API

```python
from compress_utils import compressor, Algorithm

# Create a compressor with your algorithm of choice
comp = compressor("zstd")  # or 'brotli', 'xz', etc.

# Compress data with optional compression level (1-10)
compressed = comp.compress(b"Hello, world!", level=3)

# Decompress data
original = comp.decompress(compressed)
```

### Functional API

```python
from compress_utils import compress, decompress

# Compress and decompress directly
compressed = compress(b"Hello, world!", "zstd", level=3)
original = decompress(compressed, "zstd")
```

### Streaming API

For processing large data in chunks or when data arrives incrementally (e.g., from a network stream), use the streaming API:

```python
from compress_utils import CompressStream, DecompressStream

# Compression streaming
stream = CompressStream("zstd", level=3)
compressed_chunks = []

# Process data in chunks
for chunk in data_chunks:
    compressed_chunks.append(stream.compress(chunk))

# Finalize compression (important!)
compressed_chunks.append(stream.finish())

# Decompression streaming
decompress_stream = DecompressStream("zstd")
decompressed_chunks = []

for chunk in compressed_chunks:
    decompressed_chunks.append(decompress_stream.decompress(chunk))

# Finalize decompression
decompressed_chunks.append(decompress_stream.finish())
```

The streaming API is ideal for:
- Processing files that don't fit in memory
- Network data that arrives in chunks
- Real-time compression/decompression
- Pipeline processing where data flows through multiple stages

## Available Algorithms

The following algorithms are supported (availability depends on build configuration):

- **Brotli** - Google's compression algorithm optimized for the web
- **LZMA/XZ** - High compression ratio algorithms
- **zlib** - Widely used general-purpose compression
- **Zstandard** - Fast compression algorithm with high ratios

## Documentation

For detailed API documentation and advanced usage, see the [full documentation](https://github.com/dupontcyborg/compress-utils/blob/main/bindings/python/API.md).

## Contributing

Contributions are welcome! Check out the [issues page](https://github.com/dupontcyborg/compress-utils/issues) for open tasks or submit your own ideas.

## License

This project is licensed under the MIT License - see the LICENSE file for details.