<div dir="ltr">In python, I use this. <div><div><br></div><div>#!/usr/bin/env python</div><div> &#39;&#39;&#39;</div><div>events.py - subscribe to all events and print them to stdout</div><div>&#39;&#39;&#39;</div><div>import ESL</div><div> </div><div>con = ESL.ESLconnection(&#39;localhost&#39;, &#39;8021&#39;, &#39;ClueCon&#39;)</div><div> </div><div>if con.connected:</div><div>    con.events(&#39;plain&#39;, &#39;all&#39;)</div><div>    while 1:</div><div>        e = con.recvEvent()</div><div>        if e:</div><div>            print e.serialize()</div></div></div>