Skip to content

Commit f5f729b

Browse files
authored
Update README.md
1 parent 0bcde52 commit f5f729b

File tree

1 file changed

+32
-2
lines changed

1 file changed

+32
-2
lines changed

README.md

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,32 @@
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+

0 commit comments

Comments
 (0)