10346: Updates from review comments.
[arvados.git] / doc / sdk / python / example.html.textile.liquid
index fe24dba582336075466a8b59729e40ec4559f122..e91055e101e9e8004e7044006093253b320189d7 100644 (file)
@@ -5,6 +5,8 @@ navmenu: Python
 title: Examples
 ...
 
+In these examples, the site prefix is @aaaaa@.
+
 h2.  Initialize SDK
 
 <pre>
@@ -21,13 +23,13 @@ result = api.collection().create(body={"collection": {"name": "create example"}}
 h2. delete
 
 <pre>
-result = api.collections().delete(uuid="aaaaa-bbbbb-ccccccccccccccc").execute()
+result = api.collections().delete(uuid="aaaaa-4zz18-ccccccccccccccc").execute()
 </pre>
 
 h2. get
 
 <pre>
-result = api.collections().get(uuid="aaaaa-bbbbb-ccccccccccccccc").execute()
+result = api.collections().get(uuid="aaaaa-4zz18-ccccccccccccccc").execute()
 </pre>
 
 h2. list
@@ -39,7 +41,7 @@ result = api.collections().list(filters=[["uuid", "=", "aaaaa-bbbbb-cccccccccccc
 h2. update
 
 <pre>
-result = api.collections().update(uuid="aaaaa-bbbbb-ccccccccccccccc", body={"collection": {"name": "update example"}}).execute()
+result = api.collections().update(uuid="aaaaa-4zz18-ccccccccccccccc", body={"collection": {"name": "update example"}}).execute()
 </pre>
 
 h2. Get current user