Home | History | Annotate | Download | only in googleapiclient

Lines Matching refs:json

18 as JSON, Atom, etc. The model classes are responsible
27 import json
48 format such as JSON and a Python object representation.
129 serializable by json.
136 body: string, the body serialized as JSON
237 """Model class for JSON.
239 Serializes and de-serializes between JSON and the Python
242 accept = 'application/json'
243 content_type = 'application/json'
244 alt_param = 'json'
258 return json.dumps(body_value)
265 body = json.loads(content)
276 """Model class for requests that don't return JSON.
278 Serializes and de-serializes between JSON and the Python
283 content_type = 'application/json'
297 Serializes and de-serializes between JSON and the Python
302 content_type = 'application/json'