Package apiclient :: Module discovery
[hide private]
[frames] | no frames]

Module discovery

source code

Client for discovery based APIs.

A client library for Google's discovery based APIs.


Author: jcgregorio@google.com (Joe Gregorio)

Classes [hide private]
  ResourceMethodParameters
Represents the parameters associated with a method.
  Resource
A class for interacting with a resource.
Functions [hide private]
 
fix_method_name(name)
Fix method names to avoid reserved word conflicts.
source code
 
key2param(key)
Converts key names into parameter names.
source code
 
build(serviceName, version, http=None, discoveryServiceUrl=DISCOVERY_URI, developerKey=None, model=None, requestBuilder=HttpRequest)
Construct a Resource for interacting with an API.
source code
 
build_from_document(service, base=None, future=None, http=None, developerKey=None, model=None, requestBuilder=HttpRequest)
Create a Resource for interacting with an API.
source code
 
_cast(value, schema_type)
Convert value to a string based on JSON Schema type.
source code
 
_media_size_to_long(maxSize)
Convert a string media size, such as 10GB or 3TB into an integer.
source code
 
_media_path_url_from_info(root_desc, path_url)
Creates an absolute media path URL.
source code
 
_fix_up_parameters(method_desc, root_desc, http_method)
Updates parameters of an API method with values specific to this library.
source code
 
_fix_up_media_upload(method_desc, root_desc, path_url, parameters)
Updates parameters of API by adding 'media_body' if supported by method.
source code
 
_fix_up_method_description(method_desc, root_desc)
Updates a method description in a discovery document.
source code
 
createMethod(methodName, methodDesc, rootDesc, schema)
Creates a method for attaching to a Resource.
source code
 
createNextMethod(methodName)
Creates any _next methods for attaching to a Resource.
source code
Variables [hide private]
  logger = logging.getLogger(__name__)
  URITEMPLATE = re.compile('{[^}]*}')
  VARNAME = re.compile('[a-zA-Z0-9_-]+')
  DISCOVERY_URI = 'https://www.googleapis.com/discovery/v1/apis/...
  DEFAULT_METHOD_DOC = 'A description of how to use this function'
  HTTP_PAYLOAD_METHODS = frozenset(['PUT', 'POST', 'PATCH'])
  _MEDIA_SIZE_BIT_SHIFTS = {'KB': 10, 'MB': 20, 'GB': 30, 'TB': 40}
  BODY_PARAMETER_DEFAULT_VALUE = {'description': 'The request bo...
  MEDIA_BODY_PARAMETER_DEFAULT_VALUE = {'description':('The file...
  STACK_QUERY_PARAMETERS = frozenset(['trace', 'pp', 'userip', '...
  STACK_QUERY_PARAMETER_DEFAULT_VALUE = {'type': 'string', 'loca...
  RESERVED_WORDS = frozenset(['body'])
Function Details [hide private]

fix_method_name(name)

source code 
Fix method names to avoid reserved word conflicts.

Args:
  name: string, method name.

Returns:
  The name with a '_' prefixed if the name is a reserved word.

key2param(key)

source code 
Converts key names into parameter names.

For example, converting "max-results" -> "max_results"

Args:
  key: string, the method key name.

Returns:
  A safe method name based on the key name.

build(serviceName, version, http=None, discoveryServiceUrl=DISCOVERY_URI, developerKey=None, model=None, requestBuilder=HttpRequest)

source code 
Construct a Resource for interacting with an API.

Construct a Resource object for interacting with an API. The serviceName and
version are the names from the Discovery service.

Args:
  serviceName: string, name of the service.
  version: string, the version of the service.
  http: httplib2.Http, An instance of httplib2.Http or something that acts
    like it that HTTP requests will be made through.
  discoveryServiceUrl: string, a URI Template that points to the location of
    the discovery service. It should have two parameters {api} and
    {apiVersion} that when filled in produce an absolute URI to the discovery
    document for that service.
  developerKey: string, key obtained from
    https://code.google.com/apis/console.
  model: apiclient.Model, converts to and from the wire format.
  requestBuilder: apiclient.http.HttpRequest, encapsulator for an HTTP
    request.

Returns:
  A Resource object with methods for interacting with the service.

Decorators:
  • @positional(2)

build_from_document(service, base=None, future=None, http=None, developerKey=None, model=None, requestBuilder=HttpRequest)

source code 
Create a Resource for interacting with an API.

Same as `build()`, but constructs the Resource object from a discovery
document that is it given, as opposed to retrieving one over HTTP.

Args:
  service: string or object, the JSON discovery document describing the API.
    The value passed in may either be the JSON string or the deserialized
    JSON.
  base: string, base URI for all HTTP requests, usually the discovery URI.
    This parameter is no longer used as rootUrl and servicePath are included
    within the discovery document. (deprecated)
  future: string, discovery document with future capabilities (deprecated).
  http: httplib2.Http, An instance of httplib2.Http or something that acts
    like it that HTTP requests will be made through.
  developerKey: string, Key for controlling API usage, generated
    from the API Console.
  model: Model class instance that serializes and de-serializes requests and
    responses.
  requestBuilder: Takes an http request and packages it up to be executed.

Returns:
  A Resource object with methods for interacting with the service.

Decorators:
  • @positional(1)

_cast(value, schema_type)

source code 
Convert value to a string based on JSON Schema type.

See http://tools.ietf.org/html/draft-zyp-json-schema-03 for more details on
JSON Schema.

Args:
  value: any, the value to convert
  schema_type: string, the type that value should be interpreted as

Returns:
  A string representation of 'value' based on the schema_type.

_media_size_to_long(maxSize)

source code 
Convert a string media size, such as 10GB or 3TB into an integer.

Args:
  maxSize: string, size as a string, such as 2MB or 7GB.

Returns:
  The size as an integer value.

_media_path_url_from_info(root_desc, path_url)

source code 
Creates an absolute media path URL.

Constructed using the API root URI and service path from the discovery
document and the relative path for the API method.

Args:
  root_desc: Dictionary; the entire original deserialized discovery document.
  path_url: String; the relative URL for the API method. Relative to the API
      root, which is specified in the discovery document.

Returns:
  String; the absolute URI for media upload for the API method.

_fix_up_parameters(method_desc, root_desc, http_method)

source code 
Updates parameters of an API method with values specific to this library.

Specifically, adds whatever global parameters are specified by the API to the
parameters for the individual method. Also adds parameters which don't
appear in the discovery document, but are available to all discovery based
APIs (these are listed in STACK_QUERY_PARAMETERS).

SIDE EFFECTS: This updates the parameters dictionary object in the method
description.

Args:
  method_desc: Dictionary with metadata describing an API method. Value comes
      from the dictionary of methods stored in the 'methods' key in the
      deserialized discovery document.
  root_desc: Dictionary; the entire original deserialized discovery document.
  http_method: String; the HTTP method used to call the API method described
      in method_desc.

Returns:
  The updated Dictionary stored in the 'parameters' key of the method
      description dictionary.

_fix_up_media_upload(method_desc, root_desc, path_url, parameters)

source code 
Updates parameters of API by adding 'media_body' if supported by method.

SIDE EFFECTS: If the method supports media upload and has a required body,
sets body to be optional (required=False) instead. Also, if there is a
'mediaUpload' in the method description, adds 'media_upload' key to
parameters.

Args:
  method_desc: Dictionary with metadata describing an API method. Value comes
      from the dictionary of methods stored in the 'methods' key in the
      deserialized discovery document.
  root_desc: Dictionary; the entire original deserialized discovery document.
  path_url: String; the relative URL for the API method. Relative to the API
      root, which is specified in the discovery document.
  parameters: A dictionary describing method parameters for method described
      in method_desc.

Returns:
  Triple (accept, max_size, media_path_url) where:
    - accept is a list of strings representing what content types are
      accepted for media upload. Defaults to empty list if not in the
      discovery document.
    - max_size is a long representing the max size in bytes allowed for a
      media upload. Defaults to 0L if not in the discovery document.
    - media_path_url is a String; the absolute URI for media upload for the
      API method. Constructed using the API root URI and service path from
      the discovery document and the relative path for the API method. If
      media upload is not supported, this is None.

_fix_up_method_description(method_desc, root_desc)

source code 
Updates a method description in a discovery document.

SIDE EFFECTS: Changes the parameters dictionary in the method description with
extra parameters which are used locally.

Args:
  method_desc: Dictionary with metadata describing an API method. Value comes
      from the dictionary of methods stored in the 'methods' key in the
      deserialized discovery document.
  root_desc: Dictionary; the entire original deserialized discovery document.

Returns:
  Tuple (path_url, http_method, method_id, accept, max_size, media_path_url)
  where:
    - path_url is a String; the relative URL for the API method. Relative to
      the API root, which is specified in the discovery document.
    - http_method is a String; the HTTP method used to call the API method
      described in the method description.
    - method_id is a String; the name of the RPC method associated with the
      API method, and is in the method description in the 'id' key.
    - accept is a list of strings representing what content types are
      accepted for media upload. Defaults to empty list if not in the
      discovery document.
    - max_size is a long representing the max size in bytes allowed for a
      media upload. Defaults to 0L if not in the discovery document.
    - media_path_url is a String; the absolute URI for media upload for the
      API method. Constructed using the API root URI and service path from
      the discovery document and the relative path for the API method. If
      media upload is not supported, this is None.

createMethod(methodName, methodDesc, rootDesc, schema)

source code 
Creates a method for attaching to a Resource.

Args:
  methodName: string, name of the method to use.
  methodDesc: object, fragment of deserialized discovery document that
    describes the method.
  rootDesc: object, the entire deserialized discovery document.
  schema: object, mapping of schema names to schema descriptions.

createNextMethod(methodName)

source code 
Creates any _next methods for attaching to a Resource.

The _next methods allow for easy iteration through list() responses.

Args:
  methodName: string, name of the method to use.


Variables Details [hide private]

DISCOVERY_URI

Value:
'https://www.googleapis.com/discovery/v1/apis/' '{api}/{apiVersion}/re\
st'

BODY_PARAMETER_DEFAULT_VALUE

Value:
{'description': 'The request body.', 'type': 'object', 'required': Tru\
e,}

MEDIA_BODY_PARAMETER_DEFAULT_VALUE

Value:
{'description':('The filename of the media request body, or an instanc\
e ' 'of a MediaUpload object.'), 'type': 'string', 'required': False,}

STACK_QUERY_PARAMETERS

Value:
frozenset(['trace', 'pp', 'userip', 'strict'])

STACK_QUERY_PARAMETER_DEFAULT_VALUE

Value:
{'type': 'string', 'location': 'query'}