Merge branch '19792-pysdk-cookbook'
[arvados.git] / doc / sdk / python / sdk-python.html.textile.liquid
index e0dcc5ad2cefa8769bd74894b23b6e7d872f49fd..bf66194068cb6c2e569f6a6931e0275e82d3cf00 100644 (file)
@@ -97,31 +97,3 @@ Type "help", "copyright", "credits" or "license" for more information.
 h2. Usage
 
 Check out the "API client overview":api-client.html and "cookbook":cookbook.html.
-
-h3. Notes
-
-The general form of an API call is:
-
-<notextile>
-<pre><code class="userinput">arvados.api(<i>api_version</i>).<i>plural_resource_type</i>().<i>api_method</i>(<i>parameter</i>=<i>value</i>, ...).execute()
-</code></pre>
-</notextile>
-
-Many API methods accept a parameter whose name is the same as the resource type. For example, @links.create@ accepts a parameter called @link@. This parameter should be given as @body@.
-
-<notextile>
-<pre><code class="userinput">arvados.api('v1').links().create(
-    uuid=test_link['uuid'],
-    body={'properties':{'foo':'bar'}}).execute()
-</code></pre>
-</notextile>
-
-One way to make API calls slightly less verbose is:
-
-<notextile>
-<pre><code class="userinput">arv = arvados.api('v1')
-j = arv.jobs().list().execute()
-</code></pre>
-</notextile>
-
-The SDK retrieves the list of API methods from the server at run time. Therefore, the set of available methods is determined by the server version rather than the SDK version.