Extract value from list..
-
How would i extract mac, addr_type etc from this string?
(mac=b'0\xae\xa4Nc\x1a', addr_type=0, adv_type=0, rssi=-88, data=b'\x02\x01\x06\x0e\tlopy4Xenier03\x02\n\x03\x05\x12 \x00@\x00\x02\x01\x06\x11\x071134567890123456\x05\x12 \x00@\x00\x00\x00\x00\x00\x00\x00\x00\x00')
-
@misterlisty If the object is a named tuple, use obj.mac,
if it is a simple tuple, use indices and split.