I was wondering if it was possible to access the parameters showed in the info DAT directly from Python without having an info DAT. I thought it would be similar to the error DAT which can be also accessed via the .errors and .warnings methods.
I had a look around the various wiki pages and python declaration/definition python files but couldn’t find anything.
Specifically: I’m looking to get the socketIO DAT “connected” boolean, to initiate a reconnection sequence when the originally established connection drops.
I realize this is not an answer to your original question, but for your goal I usually use the onClose callback of the SocketIO DAT and add the line dat.par.reset.pulse() which will reset the connection and reconnect.
There isn’t a way to get the arbitrary information that the Info DAT exposes. We sometimes add members that mirror some of the information, but the way to get the full information is to use the Info DAT.