Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 636 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 636 Bytes

Build Status PyPI version

magix-python-client

Python client implementation for Magix, see RFC-2

Usage

pip install magix_client
magix_host = 'http://magix:8080'

#create instance
client = MagixHttpClient(magix_host)
#
client.observe().subscribe(lambda event: print(json.loads(event.data)))
client.broadcast({'hello':'world'})