Hi there, As the title suggests, I am trying to pull the top 50 devices with most clients in our organization, using the Meraki API with Python. I've been trying to iterate through every device, find the number of clients (with the code as follows) len(dashboard.devices.getDeviceClients(serial)) and then add it to a dictionary where the key is a serial number and this the number of clients is the key. However, our organization is quite large and so this code (specifically the line I pasted above) takes a very long time to run and present my results. I was wondering if there's any way to speed up this process? Thanks!
... View more