Metadata-Version: 2.4
Name: dfp-protocol
Version: 0.1.0
Summary: Data Flag Protocol (DFP): A lightweight client-server TCP protocol
Author: Tarun N
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# Data Flag Protocol (DFP)

A lightweight TCP-based messaging protocol for structured communication using flags like `PING`, `SEND`, `LOGIN`, etc.

## Installation

```bash
pip install dfp-protocol
```

## Usage

```python
from dfp import DFPClient
client = DFPClient()
client.connect()
print(client.send("PING", "Hello"))
```
