Metadata-Version: 2.4
Name: krossApy
Version: 0.1.4
Summary: Unofficial API for KrossBooking
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Requires-Dist: beautifulsoup4
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

# KrossBooking API Client

Unofficial [KrossBooking](https://www.krossbooking.com/) API in Python. Requests are based on the official web interface (V2), data is extracted via static web scraping enabling easy programmatic access to it.

## Usage Examples
### Basic Setup
Note: This example is provided for demonstration purposes only. It retrieves every reservation without applying any filters, which may result in long fetch times. It is recommended to use appropriate filtering parameters to limit the dataset. See [Filtering Reservations](#filtering-reservations).

<details>
<summary>toggle example</summary>

```python
from krossApy import KrossAPI

with KrossAPI("hotel_id") as api:
    api.login("username", "password")
    reservations = api.get_reservations()

print(reservations)
```
#### Output
Note: Default fields are used when none are specified. See [Filtering Reservations Fields](#filtering-reservations-fields).
```json
[
    {
        "code": "1234/5678",
        "channel": "Booking.com",
        "arrival": "01/01/2025",
        "departure": "02/01/2025",
        "guest_portal_link": "https://guestportallink",
        "email": "jhon@doe.com",
        "telephone": "1234567890"
    },
    ...
]
```
    
</details>

### Filtering Reservations
<details>
    <summary>toggle example</summary>

```python
from krossApy import KrossAPI, Fields, build_filter, Reservations
from datetime import datetime

with KrossAPI("hotel_id") as api:

    api.login("username", "password")

    today = datetime.now().strftime("%d/%m/%Y")
    filter = build_filter(field=Fields.ARRIVAL, condition=">=", value=today)
    filters = [filter]

    reservations: Reservations = api.get_reservations(filters = filters)

print(reservations)
```
    
</details>

### Filtering Reservations Fields
<details>
    <summary>toggle example</summary>

```python
from krossApy import KrossAPI, Fields, build_filter, Reservations

with KrossAPI("hotel_id") as api:
    api.login("username", "password")

    reservations: Reservations = api.get_reservations(
        fields = [
            Fields.CODE,
            Fields.TELEPHONE,
        ]
    )

print(reservations)
```
#### Output
```json
[
    {
        "code": "1234/5678",
        "telephone": "1234567890"
    },
    ...
]
```
    
</details>

### Reduced Output
To avoid repeating the field names in the output, you can use the `simple_data` attribute.
`simple_data` is a dict with two keys: `keys` and `values`. `keys` contains the field names and `values` contains the values.
<details>
    <summary>toggle example</summary>

```python
from krossApy import KrossAPI, Fields, build_filter, Reservations
import json
with KrossAPI("hotel_id") as api:
    api.login("username", "password")

    reservations: Reservations = api.get_reservations(
        fields = [
            Fields.CODE,
            Fields.TELEPHONE,
        ]
    )

print(json.dumps(reservations.simple_data, indent=4))
```
#### Output
```json
{
    "keys": ["code", "telephone"],
    "values": [
        ["1234/5678", "1234567890"],
        ["5678/1234", "0987654321"],
        ...
    ]
}
```
</details>

---
Further examples will be added in the future.

## Installation

```bash
pip install krossApy
```
