Metadata-Version: 2.4
Name: socketnest
Version: 0.1.0
Summary: SocketNest Server Python Library
Home-page: https://github.com/socketnest/socketnest-python
Author: Daniel Mendoza
Author-email: daniel@socketnest.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7,<4.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.0.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# socketnest-python
SocketNest Server Python Library

## Installation

```bash
pip install socketnest
# or with poetry
poetry add socketnest
```

## Usage

```python
from socketnest import Socketnest

client = Socketnest(app_id="your_app_id", secret="your_secret")
response = client.trigger(
    channel="test", event="test", data={"message": "Hello, SocketNest!"}
)
print(response.json())
```
