Metadata-Version: 2.1
Name: ready2order-api-wrapper
Version: 0.1.2
Summary: A Python wrapper for the Ready2Order API
Home-page: https://github.com/Wilhelm-Schweizer/ready2order_api
Author: Joan Arau
Author-email: arau.j@zinnfiguren.de
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

# Ready2Order API Wrapper

A Python wrapper for the Ready2Order API that simplifies the interaction with various endpoints provided by the Ready2Order platform.

## Current Features

- Fetch company information
- Fetch product information
- Fetch all bills (invoices)
- Fetch a specific invoice by its ID

## Installation

You can install the package via pip:

```bash
pip install ready2order-api-wrapper
```

## Usage Example

```python
from ready2order_api.api import Ready2OrderAPI as r2o

api = r2o("YOUR_ACCOUNT_TOKEN")

print(api.get_products())
```




