https://github.com/stella4444/http-server
HTTP server that is ideal for small-scale applications, this implementation provides a straightforward file-serving solution.
https://github.com/stella4444/http-server
networking server socket socket-programming
Last synced: 3 months ago
JSON representation
HTTP server that is ideal for small-scale applications, this implementation provides a straightforward file-serving solution.
- Host: GitHub
- URL: https://github.com/stella4444/http-server
- Owner: stella4444
- Created: 2024-07-10T05:33:37.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-24T16:02:46.000Z (almost 2 years ago)
- Last Synced: 2025-12-01T03:29:14.706Z (7 months ago)
- Topics: networking, server, socket, socket-programming
- Language: Python
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple-HTTP-Server (in Python)
This repository contains a Python-based HTTP server implementation that serves files over TCP/IP using the HTTP protocol. The server listens on port 6789 and responds to HTTP GET requests by serving the requested file if it exists. It handles basic HTTP status codes (200 OK and 404 Not Found) and provides appropriate responses. This implementation is a simple file server for small-scale applications.
(Its function is similar to the LiveServer extension in VSCode)