File tree Expand file tree Collapse file tree 1 file changed +32
-2
lines changed Expand file tree Collapse file tree 1 file changed +32
-2
lines changed Original file line number Diff line number Diff line change 1- # Python file upload server
2- A file upload server is a program that lets people send files from their devices to a central computer over a local network.
1+ # File Upload Server
2+
3+ A simple Python-based file upload server with speed indicators.
4+
5+ ## Features
6+ - Upload multiple files with real-time progress and speed.
7+
8+ ## Installation
9+ 1 . Clone the repository:
10+ ``` bash
11+ git clone https://github.com/navnee1h/file-upload-server.git
12+ cd file-upload-server
13+ ```
14+ 2 . Create the uploads directory:
15+ ``` bash
16+ mkdir uploads
17+ ```
18+
19+ ## Usage
20+ 1 . Start the server:
21+ ``` bash
22+ python server.py
23+ ```
24+ 2 . Open ` http://localhost:8000 ` in your browser to upload files.
25+
26+ ## File Structure
27+ - ` server.py ` : Backend script.
28+ - ` index.html ` : Frontend.
29+ - ` uploads/ ` : Storage for files.
30+
31+ ------------------------------------------------------------------------------------ Happy coding ! -----------------------------------------------------------------------------------------
32+
You can’t perform that action at this time.
0 commit comments