Metadata-Version: 2.4
Name: apify-booking-client
Version: 0.1.0
Summary: Python client for the rl1987/booking-api-scraper Apify Actor — Booking.com properties, live prices, and room-rate tables.
Author-email: rl1987 <rimantas@keyspace.lt>
License: MIT
Project-URL: Homepage, https://apify.com/rl1987/booking-api-scraper
Project-URL: Source, https://apify.com/rl1987/booking-api-scraper
Keywords: apify,web-scraping,api-client
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.28
Dynamic: license-file

# apify-booking-client

Python client for the rl1987/booking-api-scraper Apify Actor — Booking.com properties, live prices, and room-rate tables.

Actor: [rl1987/booking-api-scraper](https://apify.com/rl1987/booking-api-scraper) (pay-per-result, no subscription).

## Install

```bash
pip install apify-booking-client
```

## Usage

```python
from apify_booking_client import BookingClient

client = BookingClient(api_token="apify_api_...")  # https://console.apify.com/account/integrations
items = client.run({"search": "Amsterdam", "rooms": 1, "adults": 2, "maxItems": 20})
for item in items:
    print(item)
```

## License

MIT
