QuickShare WebServer is a simple Python program that allows you to create a web server for instant file sharing. You can use either the Python script or the precompiled executable version.
The QuickShare WebServer script creates a web server that enables instant file sharing. It utilizes Python's http.server
module to handle HTTP requests. The web server provides a directory listing with file details such as size and creation time. Additionally, it includes a basic HTML interface with a home button for easy navigation.
- Run the Python script or the precompiled executable.
- Access the server using the provided local IP and port.
webserver.py
orwebserver.exe
: Main script or executable file.static
: Directory for static files (e.g., images, stylesheets).README.md
: Project documentation.
- Python 3.x
import http.server import socketserver import os import socket import time
The server is accessible within the local network (LAN) only.