Metadata-Version: 2.2
Name: excel_unpack
Version: 0.2.0
Summary: A tool to extract attachments from Excel (XLSX) files.
Home-page: https://github.com/svk1998/
Author: Shivnand Vishwakarma
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: olefile
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: summary

# ExcelUnpack

ExcelUnpack is a Python tool that allows you to extract embedded attachments from Excel files (XLSX).

## Installation

You can install ExcelUnpack using pip:

```
pip install excel-unpack
```

## Usage

### As a Command-Line Tool:

```
excel-unpack path/to/excel/file.xlsx path/to/output/folder
```

### As a Python Library:

```python
from excelunpack.excel_attachments import extract_attachments_from_xlsx

xlsx_file = "path/to/excel/file.xlsx"
output_dir = "path/to/output/folder"
extract_attachments_from_xlsx(xlsx_file, output_dir)
```
