Metadata-Version: 2.4
Name: awlise
Version: 1.1.1
Summary: An awmazing API wrapper for Alise.
Author-email: Awakno <contact@awakno.fr>
License-Expression: GPL-3.0-or-later
Project-URL: Homepage, https://github.com/Awakno/Alise-api
Project-URL: Repository, https://github.com/Awakno/Alise-api
Project-URL: Issues, https://github.com/Awakno/Alise-api/issues
Keywords: alise,api,wrapper,booking,aiohttp
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: aiohttp>=3.8.0
Requires-Dist: beautifulsoup4>=4.12.0
Requires-Dist: pydantic>=1.10
Dynamic: license-file

<img alt="Awlise: An awmazing API wrapper for Alise" src="https://raw.githubusercontent.com/Awakno/Alise-api/main/.github/assets/banner.svg" width="100%" />

_This library **is not** affiliated with [Alise](https://alise.net/) in any way._

## What is "Alise" ?

Alise is a platform designed for managing bookings, reservations, and other administrative tasks for various establishments. It provides a web-based interface for users to interact with its services. Awlise aims to simplify and enhance the interaction with Alise's API by providing a Python-based wrapper.

## Installation

Install Awlise via pip:

```bash
pip install awlise
```

## Usage

```python
import asyncio

from awlise import login_credentials

# Example usage
session = asyncio.run(
    login_credentials(site_id="example_site", username="user", password="password")
)
```

## Contributing

We welcome contributions! Please refer to the [CONTRIBUTING.md](CONTRIBUTING.md) file for guidelines on how to contribute to this project.

## License

This project is licensed under the GPL-3.0 License - see the [LICENSE.md](LICENSE.md) file for details.
