Metadata-Version: 2.3
Name: mdona-scrapper
Version: 0.1.3
Summary: A simple scrapper for Mercadona's receipts
Project-URL: homepage, https://pypi.org/project/mdona-scrapper/
Project-URL: repository, https://github.com/edugzlez/mdona-scrapper
License-Expression: MIT
License-File: LICENSE
Requires-Python: <3.12,>=3.8
Requires-Dist: pandas>=2.0.3
Requires-Dist: pypdf>=5.0.0
Description-Content-Type: text/markdown

# Mercadona's invoice scrapper

This package allows you to extract the information from a Mercadona's invoice in PDF format and convert it to a pandas DataFrame.

## Installation

```bash
pip install mdona-scrapper
```

## Usage

```python
from mdona_scrapper import MercadonaScrapper

invoice = MercadonaScrapper.get_invoce('path/to/invoice.pdf')

producs = invoice.products
order_number = invoice.order_number
invoice_number = invoice.invoice_number
payment_date = invoice.payment_date

df = invoice.dataframe
```
