Skip to content

Commit dd528fd

Browse files
Update README.md
1 parent 050ef5d commit dd528fd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# 🛰️ Python Multi-Mode Traffic Listener
22

3-
A lightweight Python server that listens for incoming **REST** or **Socket** traffic on a specified port. Outputs can be printed to the console or logged to a file, based on configuration.
3+
A lightweight Python server that listens for incoming **REST** or **WebSocket** traffic on a specified port. Outputs can be printed to the console or logged to a file, based on configuration.
44

55
---
66

77
## ⚙️ Features
88

9-
- 🔁 Multi-mode support: **REST** and **Socket**
9+
- 🔁 Multi-mode support: **REST** and **WebSocket**
1010
- 📄 Logs to file or prints to terminal
1111
- 🧩 Configurable via `config.ini`
1212
- 🧵 Threaded handling for socket clients
@@ -47,7 +47,7 @@ A Flask server that echoes all HTTP requests.
4747
python ListeningApp.py
4848
```
4949
50-
Accepts GET, POST, PUT, DELETE, PATCH
50+
Accepts GET, POST, PUT, DELETE, PATCH
5151
Captures method, headers, and body
5252
5353
Example using curl:
@@ -57,7 +57,7 @@ curl -X POST http://localhost:5000/test -d "hello=world"
5757
```
5858
5959
### Socket Mode
60-
A TCP server that reads newline-terminated messages.
60+
A TCP server that reads newline-terminated messages.
6161
Use any TCP client to send messages.
6262
6363
> Responds with Socket: "Message received"
@@ -91,5 +91,5 @@ Body: hello=world
9191
MIT License. See LICENSE file for details.
9292
9393
## 🤝 Contributing
94-
Pull requests are welcome.
94+
Pull requests are welcome.
9595
For major changes, please open an issue first to discuss what you would like to change.

0 commit comments

Comments
 (0)