Client for Mewa server
Project description
# pymewa
## About
This is Python library which simplifies connection to the [Channel Server](https://github.com/AnthillTech/mewa).
## Requirements
* [WebSocket client](https://github.com/liris/websocket-client)
## Instalation
```bash
pip install mewa
```
## Sample usage pattern
```python
connection = Connection("ws://mewa.cc/ws")
def onConnected():
connection.getDevices()
connection.sendEvent("serviceA.event2", "78")
connection.sendMessage("device66", "serviceA.level", "34")
def onEvent(fromDevice, eventId, params):
print("received event %s from %s with params %s" % (fromDevice, eventId, params))
def onMessage(fromDevice, eventId, params):
print("received message %s from %s with params %s" % (fromDevice, eventId, params))
def onDevicesEvent(devices):
print("Found devices:")
print(devices)
def onPropertyChanged(device, propertyName, value):
print("Property %s on device %s was changed to %s" % (device, propertyName, value))
if __name__ == "__main__":
connection.onConnected = onConnected
connection.onEvent = onEvent
connection.onMessage = onMessage
connection.onDevicesEvent = onDevicesEvent
connection.connect("test", "python", "pass")
```
## Redistributing
This code is distributed under BSD3 License. It may be freely redistributed, subject to the provisions of this license.
## About
This is Python library which simplifies connection to the [Channel Server](https://github.com/AnthillTech/mewa).
## Requirements
* [WebSocket client](https://github.com/liris/websocket-client)
## Instalation
```bash
pip install mewa
```
## Sample usage pattern
```python
connection = Connection("ws://mewa.cc/ws")
def onConnected():
connection.getDevices()
connection.sendEvent("serviceA.event2", "78")
connection.sendMessage("device66", "serviceA.level", "34")
def onEvent(fromDevice, eventId, params):
print("received event %s from %s with params %s" % (fromDevice, eventId, params))
def onMessage(fromDevice, eventId, params):
print("received message %s from %s with params %s" % (fromDevice, eventId, params))
def onDevicesEvent(devices):
print("Found devices:")
print(devices)
def onPropertyChanged(device, propertyName, value):
print("Property %s on device %s was changed to %s" % (device, propertyName, value))
if __name__ == "__main__":
connection.onConnected = onConnected
connection.onEvent = onEvent
connection.onMessage = onMessage
connection.onDevicesEvent = onDevicesEvent
connection.connect("test", "python", "pass")
```
## Redistributing
This code is distributed under BSD3 License. It may be freely redistributed, subject to the provisions of this license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mewa-0.5.tar.gz
(2.2 kB
view details)
File details
Details for the file mewa-0.5.tar.gz
.
File metadata
- Download URL: mewa-0.5.tar.gz
- Upload date:
- Size: 2.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae835ef0b00d2e2c6dac0b24e9aaf8afc2ff67f787d59a345ae5d0944408c697 |
|
MD5 | b6ac5c87ffc927819670c8c12f05019e |
|
BLAKE2b-256 | 6f79f42231cae627d64d292da70deefd48d5b1063eec8130d5b8a0750dd4fab4 |