Metadata-Version: 1.0
Name: PyReaktor
Version: 0.1.0
Summary: Python client for the reaktor.io  notification service.
Home-page: http://reaktor.io
Author: Tomasz Brue
Author-email: info@reaktor.io
License: LICENSE.txt
Description: ==========
        PyReaktor 0.1.0
        ==========
        
        Python client for the reaktor.io  notification service.
        Sign in for your reaktor account on http://reaktor.io.
        
        Installation
        ----------
        
        	pip install pyreaktor
        
        Usage 
        ----------
        
        Typical usage looks like this:
        
        	from reaktor import *
        
        	# connect to reaktor with your mail/password combination
        	reaktor = Reaktor("test@test.de", "test")
        
        	# trigger "Test" event
        	d = {
        		"name": "Test"
        	}
        	ok = reaktor.trigger("Test", data=d, safe=True)
        
        The **safe** parameter is optional and garantuees that the trigger function waits till the event was triggered and returns only *ok: True* if everything performed well.
        Otherwise trigger will always return *ok: True* immediatly.
        
Platform: UNKNOWN
