You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Results length returned from the API will not trigger break if it equals to limit.
In line 677:
if len(results) < limit:
break
I am setting limit to 1 and results returned with size 1 will not meet this condition and causing additional API calls, even thought the limit has reached.