Metadata-Version: 2.4
Name: label_sorter
Version: 0.5
Summary: Library to sort Amazon and Shopify shipping labels
Author-email: Harry19967 <harilalsunil2@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/harilal766/Ecommerce-label-sorter
Project-URL: Issues, https://github.com/harilal766/Ecommerce-label-sorter/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Ecommerce Label Sorter

## Description:
1. A python program to sort Amazon and Shopify shipping labels based on the product name and quantity.
2. Each sorted group of orders will be stored in a dedicated output pdf file which is named after the product name and quantity.
3. Miscellaneous orders will be stored on a dedicated file named "Mixed".
4. All of these files will be stored inside a folder which is named after the input pdf file.

## Installation
```
pip install ecom_label_sorter
```

## Usage
```
from label_sorter import LabelSorter

# Initialize
sorter_instance = LabelSorter(pdf_path = <path to the pdf file>)

# begin sorting
sorter_instance.create_sorted_pdf_files()

# a new folder named after the input pdf file will be created and the output files will be stored inside it.
```
