Metadata-Version: 2.4
Name: t6rcon
Version: 0.1.2
Summary: A RCON module for Plutonium T6
Home-page: https://github.com/Yallamaztar/iw4m
Author: budiworld
Author-email: budi.world@yahoo.com
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
Requires-Dist: pydantic
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

## A RCON module for Plutonium T6

### Installation:
```cmd
pip install t6rcon
```

### Simple Usage:
```python
from t6rcon import PlutoRcon

rcon = PlutoRCON(
    ip_addr  = "127.0.0.1",
    port     = 4976,
    password = "password",
)

rcon.kick(0, "You got kicked!")
rcon.tell(5, "Hello")

print(rcon.get_players())
```
