Metadata-Version: 2.1
Name: peleren
Version: 1.0.2
Summary: A simple WSGI server optimized for AI applications
Home-page: https://github.com/Marc-Arold/peleren
Author: Marc Arold ROSEMOND
Author-email: rosemondmarcarold@gmail.com
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

# Peleren Optimized WSGI Server

An asynchronous, efficient, and developer-friendly WSGI server built with Python's asyncio. This server is optimized for high performance, security, and compliance with the WSGI specification, making it an excellent choice for developers looking to deploy WSGI applications.

## Table of Contents

- [Features](#features)
- [Requirements](#requirements)
- [Installation](#installation)
- [Quick Start](#quick-start)
- [Usage](#usage)
  - [Command-Line Arguments](#command-line-arguments)
  - [Running with SSL/TLS](#running-with-ssl-tls)
- [Configuration](#configuration)
- [Examples](#examples)
  - [Simple WSGI Application](#simple-wsgi-application)
  - [Simple Echo Application](#simple-echo-application)
- [Logging](#logging)
- [Contributing](#contributing)
- [License](#license)
- [Contact](#contact)
- [Acknowledgments](#acknowledgments)
- [Additional Information](#additional-information)
  - [Security Considerations](#security-considerations)
  - [Future Enhancements](#future-enhancements)
  - [FAQs](#faqs)
- [Testing](#testing)
- [Feedback](#feedback)

---

## Features

- **Asynchronous I/O with asyncio:** Efficiently handles a large number of simultaneous connections.
- **WSGI 1.0 Compliance:** Fully compliant with the WSGI specification, ensuring compatibility with WSGI applications.
- **SSL/TLS Support:** Optional SSL/TLS encryption for secure connections.
- **Caching Mechanism:** Built-in caching to optimize repeated requests.
- **Detailed Logging:** Uses Python's logging module for configurable logging levels.
- **Extensible:** Designed with extensibility in mind, allowing for future enhancements like middleware support.
- **Easy Configuration:** Command-line arguments for quick configuration without modifying the code.

---

## Requirements

- Python 3.7 or higher
- `asyncio` library (comes with Python 3.7+)
- SSL certificates (if using SSL/TLS)

---

## Installation

Clone the repository:

```bash
pip install peleren
```
