Skip to main content

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.

Project details


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.4.tar.gz (2.2 kB view hashes)

Uploaded Source

Built Distribution

mewa-0.4.linux-i686.tar.gz (3.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page