4. Read example scripts in
ClientREST/jovianapi_scripts
5. Make sure that node which API you want to use have enabled REST proxy access
GUI: System Settings > Administration > REST (credentials admin, admin)
6. Example of driver usage
>>> from jovianapi import API
>>> api = API.via_rest('192.168.251.20', 82, 'admin', 'admin')
>>>
>>> api.driver.get('/time')
{u'data': {u'daemon': False,
u'servers': [u'0.pool.ntp.org', u'1.pool.ntp.org', u'2.pool.ntp.org'],
u'sync_at_boot': False,
u'timestamp': 1477047212295,
u'timezone': u'Europe/Berlin'},
u'error': None}