From e8e9dfc3c346f11b0669c1d0d1d44c5b6ae3c833 Mon Sep 17 00:00:00 2001 From: SantaSpeen Date: Wed, 12 Mar 2025 16:37:42 +0300 Subject: [PATCH] Add pypi realise --- README.md | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 998e080..09d92f9 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # winConnect (Windows Only) -Communication Client->Daemon via NamedPipe +Communicate Client-Server via Windows NamedPipe ## ToDo: @@ -11,10 +11,21 @@ Communication Client->Daemon via NamedPipe - [ ] Add support for encryption - [ ] Add support for multiple clients + ## Description This is a simple client-server communication system for Windows. The client and server communicate via a named pipe. The client sends a message to the server, and the server responds with a message. The client and server can be run on the same machine or on different machines. +## Installation + +To install the package, use the following command: + +```bash + +pip install winConnect + +``` + ## Usage You can find examples in the [examples](examples) directory. @@ -52,18 +63,6 @@ with connector as conn: print(conn.read_pipe()) ``` -[//]: # (## Installation) - -[//]: # () -[//]: # (To install the package, use the following command:) - -[//]: # () -[//]: # (```bash) - -[//]: # (pip install winConnect) - -[//]: # (```) - ## License This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.