Metadata-Version: 2.1
Name: ddecon
Version: 0.2.1
Summary: DDnet econ
Home-page: https://github.com/ByFox213/ddecon
Author: ByFox
Project-URL: Github, https://github.com/ByFox213/ddecon
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

## Installation

```bash
pip install ddecon
```
    
## Usage/Examples


```python
from ddecon import ECON

if __name__ == "__main__":
    econ = ECON("127.0.0.1", 8303, "password")
    econ.connect()
    econ.message("Hello World")
    while True:
        message = econ.read()
        if message is None:
            continue
        print(message.decode()[:-3])
```

[other examples](https://github.com/ByFox213/ddecon/tree/main/examples)
