Metadata-Version: 2.4
Name: reactor_server
Version: 2.2.0
Summary: reactor http server
License: MIT
License-File: LICENSE.txt
Author: jackcizon
Author-email: jack20021213cn@gmail.com
Requires-Python: >=3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Description-Content-Type: text/markdown

# reactor

**A minimal HTTP server implementing the Reactor pattern in Python.
Designed for learning event-driven network programming.**

This project aims to demonstrate how to implement
a Reactor-based HTTP server from scratch in Python.

Core components such as Buffer, HTTP request parser,
and HTTP response builder are implemented manually
to illustrate event-driven network programming.

## Version

**2.2.0**

## Reactor-based HTTP Server (Python)

- Implemented a non-blocking HTTP server using the Reactor pattern

- Built custom Buffer, Request parser, and Response builder

- Implemented static file serving and directory listing

- Designed multi-reactor architecture with threadpool

- Handled partial read/write and TCP connection lifecycle

- Others maybe done in the future

## Contributions are welcome!

