Home | Trees | Indices | Help |
---|
|
Classes to encapsulate a single HTTP request. The classes implement a command pattern, with every object supporting an execute() method that does the actual HTTP request.
Author: jcgregorio@google.com (Joe Gregorio)
|
|||
MediaUploadProgress Status of a resumable upload. |
|||
MediaDownloadProgress Status of a resumable download. |
|||
MediaUpload Describes a media object to upload. |
|||
MediaIoBaseUpload A MediaUpload for a io.Base objects. |
|||
MediaFileUpload A MediaUpload for a file. |
|||
MediaInMemoryUpload MediaUpload for a chunk of bytes. |
|||
MediaIoBaseDownload "Download media resources. |
|||
_StreamSlice Truncated stream. |
|||
HttpRequest Encapsulates a single HTTP request. |
|||
BatchHttpRequest Batches multiple HttpRequest objects into a single HTTP request. |
|||
HttpRequestMock Mock of HttpRequest. |
|||
RequestMockBuilder A simple mock of HttpRequest |
|||
HttpMock Mock of httplib2.Http |
|||
HttpMockSequence Mock of httplib2.Http |
|
|||
|
|||
|
|||
|
|||
|
|||
|
|
Determines whether a response should be retried. Args: resp_status: The response status received. content: The response content body. Returns: True if the response should be retried, otherwise False. |
Retries an HTTP request multiple times while handling errors. If after all retries the request still fails, last error is either returned as return value (for HTTP 5xx errors) or thrown (for ssl.SSLError). Args: http: Http object to be used to execute request. num_retries: Maximum number of retries. req_type: Type of the request (used for logging retries). sleep, rand: Functions to sleep for random time between retries. uri: URI to be requested. method: HTTP method to be used. args, kwargs: Additional arguments passed to http.request. Returns: resp, content - Response from the http request (may be HTTP 5xx). |
Set the user-agent on every request. Args: http - An instance of httplib2.Http or something that acts like it. user_agent: string, the value for the user-agent header. Returns: A modified instance of http that was passed in. Example: h = httplib2.Http() h = set_user_agent(h, "my-app-name/6.0") Most of the time the user-agent will be set doing auth, this is for the rare cases where you are accessing an unauthenticated endpoint. |
Tunnel PATCH requests over POST. Args: http - An instance of httplib2.Http or something that acts like it. Returns: A modified instance of http that was passed in. Example: h = httplib2.Http() h = tunnel_patch(h, "my-app-name/6.0") Useful if you are running on a platform that doesn't support PATCH. Apply this last if you are using OAuth 1.0, as changing the method will result in a different signature. |
Builds httplib2.Http object Returns: A httplib2.Http object, which is used to make http requests, and which has timeout set by default. To override default timeout call socket.setdefaulttimeout(timeout_in_sec) before interacting with this method. |
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Fri Jun 14 15:57:27 2019 | http://epydoc.sourceforge.net |