SimpleHTTPServe is a minimalist, no-nonsense HTTP server written in Python. Created purely for fun, this server is as simple as it gets—no third-party dependencies, no unnecessary features, just pure, unfiltered HTTP handling. Note that this project is currently unstable and primarily a learning experiment.
- Zero third-party dependencies
- Lightweight and easy to understand
- Handles basic HTTP requests and responses
- Designed for simplicity and educational purposes
- Python 3.6 or higher
Clone the repository to your local machine:
pip install SimpleHTTPServefrom SimpleHTTPServe import App, Response, HtmlResponse
from http import HTTPStatus
app = App()
def serve(request):
return Response(HTTPStatus.OK, "aman")
def index(request):
return HtmlResponse(HTTPStatus.OK, "hello.html")
if __name__=="__main__":
app.register("GET", "", serve)
app.register("GET", "/index", index)
app.start()Feel free to add whatever you feel is intresting. Whether you're fixing bugs, adding new features, improving the documentation, or simply offering suggestions, your contributions are highly appreciated.
Click on the "Fork" button at the top of this repository to create your own copy of the SimpleHTTPServe repository. And then create PR.
Clone your forked repository to your local machine.
git clone https://github.com/yourusername/SimpleHTTPServe.git- read port from terminal/config