We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example, we have to do this to get more than the limit of results:
api_response = metric_api.get_metric_details(metric, l=1000) data = json.loads(client.last_response.data) if len(api_response.hosts) == 1000: cursor = data['continuationToken']
This obviously isn't great, because we shouldn't be diving that deep into the client structure for a result from an API call.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For example, we have to do this to get more than the limit of results:
This obviously isn't great, because we shouldn't be diving that deep into the client structure for a result from an API call.
The text was updated successfully, but these errors were encountered: