Metadata-Version: 2.4
Name: nutrient-sdk
Version: 1.0.2
Summary: Nutrient SDK Python bindings for document processing
Author-email: Nutrient <support@nutrient.io>
License: Proprietary
Project-URL: Homepage, https://nutrient.io
Project-URL: Documentation, https://nutrient.io/docs
Project-URL: Repository, https://github.com/nutrient/nutrient-sdk-python
Project-URL: Changelog, https://github.com/nutrient/nutrient-sdk-python/blob/main/CHANGELOG.md
Keywords: pdf,document,conversion,nutrient
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
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: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: ACKNOWLEDGEMENTS.md
Requires-Dist: nutrient-sdk-native==1.0.2
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: black>=23.0; extra == "dev"
Requires-Dist: mypy>=1.0; extra == "dev"
Dynamic: license-file

# Nutrient SDK for Python

Python bindings for the Nutrient SDK - a powerful document processing library supporting PDF, Word, Excel, and more.

## Installation

```bash
pip install nutrient-sdk
```

## Quick Start

```python
from nutrient_sdk import Document, License, PdfExporter

# Register your license key (optional - runs in trial mode without)
License.register_key("your-license-key")

# Open and convert a document
with Document.open("input.docx") as doc:
    doc.export("output.pdf", PdfExporter())
```

## Features

- PDF creation and manipulation
- Document conversion (Word, Excel, PowerPoint to PDF)
- PDF/A and PDF/UA compliance
- Document rendering
- Annotation support
- Form filling
- Digital signatures

## Requirements

- Python 3.8 or higher

## License

Proprietary - Contact Nutrient for licensing information.

## Support

- Documentation: https://nutrient.io/docs
- Support: https://support.nutrient.io
