A lightweight ASGI server for Python with zero dependencies
Lightcorn is a minimalist ASGI server written in pure Python, built entirely on the standard library. It's designed for developers who want to understand how ASGI servers work under the hood, or need a lightweight server for simple applications.
lightcorn
├── examples/
│ └── example.py # API example
├── lightcorn/
│ ├── __init__.py # Package exports and metadata
│ ├── logger.py # Loggity-based logger module
│ └── server.py # Core server implementation
├── LICENSE # MIT license
├── pyproject.toml # PyPI config
└── README.md # This file
This project is licensed under the MIT License.
Lightcorn is currently in alpha development. It's great for learning and experimentation, but not yet recommended for production use!
