xlhe3

Results 1 comments of xlhe3

def get_devices(self, network=None): payload = { "MessageType": "ListDevices", "ClientVersionString": "libusbmuxd 1.1.0", "kLibUSBMuxVersion": 3, } devices = self.listener.exchange('ListDevices', payload) for device in devices.get('DeviceList'): if not network and device['Properties']['ConnectionType'] == 'Network': continue...