Metadata-Version: 2.4
Name: benzoqr
Version: 1.0.0
Summary: A modern Python library for QR code generation and decoding with powerful customization.
Author: BenzoQR Team
License-Expression: MIT
License-File: LICENSE
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.9
Requires-Dist: pillow>=10.0
Requires-Dist: pyzbar>=0.1.9
Requires-Dist: qrcode[pil]>=7.4
Provides-Extra: all
Requires-Dist: opencv-python>=4.8; extra == 'all'
Requires-Dist: pytest-cov>=4.0; extra == 'all'
Requires-Dist: pytest>=7.0; extra == 'all'
Requires-Dist: reportlab>=4.0; extra == 'all'
Provides-Extra: cv
Requires-Dist: opencv-python>=4.8; extra == 'cv'
Provides-Extra: dev
Requires-Dist: pytest-cov>=4.0; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Provides-Extra: pdf
Requires-Dist: reportlab>=4.0; extra == 'pdf'
Description-Content-Type: text/markdown

# BenzoQR

A modern Python library for QR code generation and decoding with powerful customization.

## Features

- Generate QR codes with one line of code
- Read QR codes from images (PNG, JPG, WEBP, etc.)
- Highly customizable: colors, gradients, module shapes, eye shapes, logos, borders
- Multi-format export: PNG, SVG, PDF, JPG, WEBP
- Fluent API for easy chaining
- Batch generation

## Installation

```bash
pip install benzoqr
```

## Quick Start

```python
from benzoqr import QR

# Simple generation
QR.create("https://example.com", output="website.png")

# Fluent API with custom styles
(QR("https://example.com")
    .style("rounded")
    .eye_style("modern")
    .gradient("#FF5722", "#FF9800")
    .logo("logo.png")
    .save("custom.png"))
    
# Reading a QR code
data = QR.read("custom.png")
print(data)
```

## Presets

BenzoQR includes built-in presets like `modern`, `minimal`, `business`, `luxury`, `neon`, and more!

```python
QR.create("https://example.com", preset="luxury", output="luxury.png")
```

## Documentation

For full documentation, please visit our docs directory.
