Metadata-Version: 2.4
Name: recconnect
Version: 1.0.0
Summary: A Python client for automating Rec.net room descriptions via Selenium.
Author-email: Nova <novabwa@outlook.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# reclient

Python client for automating room description changes on Rec.net using Selenium.

## Example

```python
from reclient import RecClient

client = RecClient("my-room", base_desc="unthirsty", debug=True)
client.send("Hello World!")
client.shutdown()
```
