Metadata-Version: 2.1
Name: kn-sock
Version: 0.1.0
Summary: A simplified socket programming toolkit for Python.
Home-page: https://github.com/KhagendraN/easy-socket
Author: Khagendra Neupane
Author-email: nkhagendra1@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# easy-socket

A simplified socket programming toolkit for Python.

## Features

- TCP/UDP messaging (sync & async)
- JSON socket communication
- File transfer over TCP
- Threaded/multi-client support
- Command-line interface

## Installation

```bash
pip install easy-socket
```

## Usage

```python
from easy_socket import send_tcp_message

send_tcp_message("localhost", 8080, "Hello, World!")
```
