We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7786d9e commit b09a4e4Copy full SHA for b09a4e4
examples/get_users.py
@@ -14,6 +14,11 @@
14
15
users = hub.get_users()
16
17
+#
18
+# Note: The HubInstance interface does NOT handle paging of results
19
+# but the new Client interface does. See https://github.com/blackducksoftware/hub-rest-api-python/blob/master/examples/client/get_users.py
20
+# for an example of retrieving users using the new Client interface
21
22
if 'totalCount' in users and users['totalCount'] > 0:
23
print(json.dumps(users))
24
else:
0 commit comments