| |
| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> |
| <html><head><title>Python: class Resource</title> |
| </head><body bgcolor="#f0f0f8"> |
| <p> |
| <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> |
| <tr bgcolor="#ffc8d8"> |
| <td colspan=3 valign=bottom> <br> |
| <font color="#000000" face="helvetica, arial"><a name="Resource">class <strong>Resource</strong></a>(<a href="__builtin__.html#object">__builtin__.object</a>)</font></td></tr> |
| |
| <tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td> |
| <td colspan=2><tt>A class for interacting with a resource.<br> </tt></td></tr> |
| <tr><td> </td> |
| <td width="100%">Methods defined here:<br> |
| <dl><dt><a name="Resource-__init__"><strong>__init__</strong></a>(self)</dt></dl> |
| |
| <dl><dt><a name="Resource-get"><strong>get</strong></a> = method(self, **kwargs)</dt><dd><tt>Gets a file's metadata by id.<br> |
| <br> |
| Args:<br> |
| pp: string, A parameter<br> |
| projection: string, Restrict information returned for simplicity and optimization.<br> |
| Allowed values<br> |
| BASIC - Includes only the basic metadata fields<br> |
| FULL - Includes all metadata fields<br> |
| trace: string, A parameter<br> |
| strict: string, A parameter<br> |
| userip: string, A parameter<br> |
| updateViewedDate: boolean, Whether to update the view date after successfully retrieving the file.<br> |
| id: string, The id for the file in question. (required)<br> |
| <br> |
| Returns:<br> |
| An object of the form<br> |
| <br> |
| {<br> |
| "mimeType": "A String", # The mimetype of the file<br> |
| "selfLink": "A String", # A link back to this file.<br> |
| "kind": "drive#file", # The type of file. This is always drive#file<br> |
| "description": "A String", # A short description of the file<br> |
| "title": "A String", # The title of this file.<br> |
| "modifiedByMeDate": "A String", # Last time this file was modified by the user (formatted <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp).<br> |
| "labels": { # Labels for the file.<br> |
| "hidden": True or False, # Whether this file is hidden from the user<br> |
| "starred": True or False, # Whether this file is starred by the user.<br> |
| "trashed": True or False, # Whether this file has been trashed.<br> |
| },<br> |
| "indexableText": { # Indexable text attributes for the file (can only be written)<br> |
| "text": "A String", # The text to be indexed for this file<br> |
| },<br> |
| "parentsCollection": [ # Collection of parent folders which contain this file.<br> |
| # On insert, setting this field will put the file in all of the provided folders. If no folders are provided, the file will be placed in the default root folder. On update, this field is ignored.<br> |
| {<br> |
| "parentLink": "A String", # A link to get the metadata for this parent<br> |
| "id": "A String", # The id of this parent<br> |
| },<br> |
| ],<br> |
| "downloadUrl": "A String", # Short term download URL for the file. This will only be populated on files with content stored in Drive.<br> |
| "userPermission": { # The permissions for the authenticated user on this file.<br> |
| "type": "A String", # The type of permission (For example: user, group etc).<br> |
| "kind": "drive#permission", # The kind of this permission. This is always drive#permission<br> |
| "etag": "A String", # An etag for this permission.<br> |
| "role": "A String", # The role that this permission describes. (For example: reader, writer, owner)<br> |
| "additionalRoles": [ # Any additional roles that this permission describes.<br> |
| "A String",<br> |
| ],<br> |
| },<br> |
| "etag": "A String", # ETag of the file.<br> |
| "fileSize": "A String", # The size of the file in bytes. This will only be populated on files with content stored in Drive.<br> |
| "createdDate": "A String", # Create time for this file (formatted ISO8601 timestamp).<br> |
| "fileExtension": "A String", # The file extension used when downloading this file. This field is read only. To set the extension, include it on title when creating the file. This will only be populated on files with content stored in Drive.<br> |
| "lastViewedDate": "A String", # Last time this file was viewed by anyone (formatted <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp).<br> |
| "id": "A String", # The id of the file.<br> |
| "md5Checksum": "A String", # An MD5 checksum for the content of this file. This will only be populated on files with content stored in Drive.<br> |
| "modifiedDate": "A String", # Last time this file was modified by anyone (formatted <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp).<br> |
| }</tt></dd></dl> |
| |
| <dl><dt><a name="Resource-insert"><strong>insert</strong></a> = method(self, **kwargs)</dt><dd><tt>Inserts a file, and any settable metadata or blob content sent with the request.<br> |
| <br> |
| Args:<br> |
| body: object, The request body.<br> |
| The object takes the form of:<br> |
| <br> |
| {<br> |
| "mimeType": "A String", # The mimetype of the file<br> |
| "selfLink": "A String", # A link back to this file.<br> |
| "kind": "drive#file", # The type of file. This is always drive#file<br> |
| "description": "A String", # A short description of the file<br> |
| "title": "A String", # The title of this file.<br> |
| "modifiedByMeDate": "A String", # Last time this file was modified by the user (formatted <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp).<br> |
| "labels": { # Labels for the file.<br> |
| "hidden": True or False, # Whether this file is hidden from the user<br> |
| "starred": True or False, # Whether this file is starred by the user.<br> |
| "trashed": True or False, # Whether this file has been trashed.<br> |
| },<br> |
| "indexableText": { # Indexable text attributes for the file (can only be written)<br> |
| "text": "A String", # The text to be indexed for this file<br> |
| },<br> |
| "parentsCollection": [ # Collection of parent folders which contain this file.<br> |
| # On insert, setting this field will put the file in all of the provided folders. If no folders are provided, the file will be placed in the default root folder. On update, this field is ignored.<br> |
| {<br> |
| "parentLink": "A String", # A link to get the metadata for this parent<br> |
| "id": "A String", # The id of this parent<br> |
| },<br> |
| ],<br> |
| "downloadUrl": "A String", # Short term download URL for the file. This will only be populated on files with content stored in Drive.<br> |
| "userPermission": { # The permissions for the authenticated user on this file.<br> |
| "type": "A String", # The type of permission (For example: user, group etc).<br> |
| "kind": "drive#permission", # The kind of this permission. This is always drive#permission<br> |
| "etag": "A String", # An etag for this permission.<br> |
| "role": "A String", # The role that this permission describes. (For example: reader, writer, owner)<br> |
| "additionalRoles": [ # Any additional roles that this permission describes.<br> |
| "A String",<br> |
| ],<br> |
| },<br> |
| "etag": "A String", # ETag of the file.<br> |
| "fileSize": "A String", # The size of the file in bytes. This will only be populated on files with content stored in Drive.<br> |
| "createdDate": "A String", # Create time for this file (formatted ISO8601 timestamp).<br> |
| "fileExtension": "A String", # The file extension used when downloading this file. This field is read only. To set the extension, include it on title when creating the file. This will only be populated on files with content stored in Drive.<br> |
| "lastViewedDate": "A String", # Last time this file was viewed by anyone (formatted <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp).<br> |
| "id": "A String", # The id of the file.<br> |
| "md5Checksum": "A String", # An MD5 checksum for the content of this file. This will only be populated on files with content stored in Drive.<br> |
| "modifiedDate": "A String", # Last time this file was modified by anyone (formatted <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp).<br> |
| }<br> |
| <br> |
| media_body: string, The filename of the media request body.<br> |
| pp: string, A parameter<br> |
| trace: string, A parameter<br> |
| strict: string, A parameter<br> |
| userip: string, A parameter<br> |
| <br> |
| Returns:<br> |
| An object of the form<br> |
| <br> |
| {<br> |
| "mimeType": "A String", # The mimetype of the file<br> |
| "selfLink": "A String", # A link back to this file.<br> |
| "kind": "drive#file", # The type of file. This is always drive#file<br> |
| "description": "A String", # A short description of the file<br> |
| "title": "A String", # The title of this file.<br> |
| "modifiedByMeDate": "A String", # Last time this file was modified by the user (formatted <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp).<br> |
| "labels": { # Labels for the file.<br> |
| "hidden": True or False, # Whether this file is hidden from the user<br> |
| "starred": True or False, # Whether this file is starred by the user.<br> |
| "trashed": True or False, # Whether this file has been trashed.<br> |
| },<br> |
| "indexableText": { # Indexable text attributes for the file (can only be written)<br> |
| "text": "A String", # The text to be indexed for this file<br> |
| },<br> |
| "parentsCollection": [ # Collection of parent folders which contain this file.<br> |
| # On insert, setting this field will put the file in all of the provided folders. If no folders are provided, the file will be placed in the default root folder. On update, this field is ignored.<br> |
| {<br> |
| "parentLink": "A String", # A link to get the metadata for this parent<br> |
| "id": "A String", # The id of this parent<br> |
| },<br> |
| ],<br> |
| "downloadUrl": "A String", # Short term download URL for the file. This will only be populated on files with content stored in Drive.<br> |
| "userPermission": { # The permissions for the authenticated user on this file.<br> |
| "type": "A String", # The type of permission (For example: user, group etc).<br> |
| "kind": "drive#permission", # The kind of this permission. This is always drive#permission<br> |
| "etag": "A String", # An etag for this permission.<br> |
| "role": "A String", # The role that this permission describes. (For example: reader, writer, owner)<br> |
| "additionalRoles": [ # Any additional roles that this permission describes.<br> |
| "A String",<br> |
| ],<br> |
| },<br> |
| "etag": "A String", # ETag of the file.<br> |
| "fileSize": "A String", # The size of the file in bytes. This will only be populated on files with content stored in Drive.<br> |
| "createdDate": "A String", # Create time for this file (formatted ISO8601 timestamp).<br> |
| "fileExtension": "A String", # The file extension used when downloading this file. This field is read only. To set the extension, include it on title when creating the file. This will only be populated on files with content stored in Drive.<br> |
| "lastViewedDate": "A String", # Last time this file was viewed by anyone (formatted <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp).<br> |
| "id": "A String", # The id of the file.<br> |
| "md5Checksum": "A String", # An MD5 checksum for the content of this file. This will only be populated on files with content stored in Drive.<br> |
| "modifiedDate": "A String", # Last time this file was modified by anyone (formatted <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp).<br> |
| }</tt></dd></dl> |
| |
| <dl><dt><a name="Resource-patch"><strong>patch</strong></a> = method(self, **kwargs)</dt><dd><tt>Updates file metadata and/or content. This method supports patch semantics.<br> |
| <br> |
| Args:<br> |
| body: object, The request body. (required)<br> |
| The object takes the form of:<br> |
| <br> |
| {<br> |
| "mimeType": "A String", # The mimetype of the file<br> |
| "selfLink": "A String", # A link back to this file.<br> |
| "kind": "drive#file", # The type of file. This is always drive#file<br> |
| "description": "A String", # A short description of the file<br> |
| "title": "A String", # The title of this file.<br> |
| "modifiedByMeDate": "A String", # Last time this file was modified by the user (formatted <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp).<br> |
| "labels": { # Labels for the file.<br> |
| "hidden": True or False, # Whether this file is hidden from the user<br> |
| "starred": True or False, # Whether this file is starred by the user.<br> |
| "trashed": True or False, # Whether this file has been trashed.<br> |
| },<br> |
| "indexableText": { # Indexable text attributes for the file (can only be written)<br> |
| "text": "A String", # The text to be indexed for this file<br> |
| },<br> |
| "parentsCollection": [ # Collection of parent folders which contain this file.<br> |
| # On insert, setting this field will put the file in all of the provided folders. If no folders are provided, the file will be placed in the default root folder. On update, this field is ignored.<br> |
| {<br> |
| "parentLink": "A String", # A link to get the metadata for this parent<br> |
| "id": "A String", # The id of this parent<br> |
| },<br> |
| ],<br> |
| "downloadUrl": "A String", # Short term download URL for the file. This will only be populated on files with content stored in Drive.<br> |
| "userPermission": { # The permissions for the authenticated user on this file.<br> |
| "type": "A String", # The type of permission (For example: user, group etc).<br> |
| "kind": "drive#permission", # The kind of this permission. This is always drive#permission<br> |
| "etag": "A String", # An etag for this permission.<br> |
| "role": "A String", # The role that this permission describes. (For example: reader, writer, owner)<br> |
| "additionalRoles": [ # Any additional roles that this permission describes.<br> |
| "A String",<br> |
| ],<br> |
| },<br> |
| "etag": "A String", # ETag of the file.<br> |
| "fileSize": "A String", # The size of the file in bytes. This will only be populated on files with content stored in Drive.<br> |
| "createdDate": "A String", # Create time for this file (formatted ISO8601 timestamp).<br> |
| "fileExtension": "A String", # The file extension used when downloading this file. This field is read only. To set the extension, include it on title when creating the file. This will only be populated on files with content stored in Drive.<br> |
| "lastViewedDate": "A String", # Last time this file was viewed by anyone (formatted <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp).<br> |
| "id": "A String", # The id of the file.<br> |
| "md5Checksum": "A String", # An MD5 checksum for the content of this file. This will only be populated on files with content stored in Drive.<br> |
| "modifiedDate": "A String", # Last time this file was modified by anyone (formatted <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp).<br> |
| }<br> |
| <br> |
| pp: string, A parameter<br> |
| trace: string, A parameter<br> |
| newRevision: boolean, Whether a blob upload should create a new revision. If not set or false, the blob data in the current head revision will be replaced.<br> |
| strict: string, A parameter<br> |
| userip: string, A parameter<br> |
| updateViewedDate: boolean, Whether to update the view date after successfully updating the file.<br> |
| updateModifiedDate: boolean, Controls updating the modified date of the file. If true, the modified date will be updated to the current time, regardless of whether other changes are being made. If false, the modified date will only be updated to the current time if other changes are also being made (changing the title, for example).<br> |
| id: string, The id for the file in question. (required)<br> |
| <br> |
| Returns:<br> |
| An object of the form<br> |
| <br> |
| {<br> |
| "mimeType": "A String", # The mimetype of the file<br> |
| "selfLink": "A String", # A link back to this file.<br> |
| "kind": "drive#file", # The type of file. This is always drive#file<br> |
| "description": "A String", # A short description of the file<br> |
| "title": "A String", # The title of this file.<br> |
| "modifiedByMeDate": "A String", # Last time this file was modified by the user (formatted <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp).<br> |
| "labels": { # Labels for the file.<br> |
| "hidden": True or False, # Whether this file is hidden from the user<br> |
| "starred": True or False, # Whether this file is starred by the user.<br> |
| "trashed": True or False, # Whether this file has been trashed.<br> |
| },<br> |
| "indexableText": { # Indexable text attributes for the file (can only be written)<br> |
| "text": "A String", # The text to be indexed for this file<br> |
| },<br> |
| "parentsCollection": [ # Collection of parent folders which contain this file.<br> |
| # On insert, setting this field will put the file in all of the provided folders. If no folders are provided, the file will be placed in the default root folder. On update, this field is ignored.<br> |
| {<br> |
| "parentLink": "A String", # A link to get the metadata for this parent<br> |
| "id": "A String", # The id of this parent<br> |
| },<br> |
| ],<br> |
| "downloadUrl": "A String", # Short term download URL for the file. This will only be populated on files with content stored in Drive.<br> |
| "userPermission": { # The permissions for the authenticated user on this file.<br> |
| "type": "A String", # The type of permission (For example: user, group etc).<br> |
| "kind": "drive#permission", # The kind of this permission. This is always drive#permission<br> |
| "etag": "A String", # An etag for this permission.<br> |
| "role": "A String", # The role that this permission describes. (For example: reader, writer, owner)<br> |
| "additionalRoles": [ # Any additional roles that this permission describes.<br> |
| "A String",<br> |
| ],<br> |
| },<br> |
| "etag": "A String", # ETag of the file.<br> |
| "fileSize": "A String", # The size of the file in bytes. This will only be populated on files with content stored in Drive.<br> |
| "createdDate": "A String", # Create time for this file (formatted ISO8601 timestamp).<br> |
| "fileExtension": "A String", # The file extension used when downloading this file. This field is read only. To set the extension, include it on title when creating the file. This will only be populated on files with content stored in Drive.<br> |
| "lastViewedDate": "A String", # Last time this file was viewed by anyone (formatted <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp).<br> |
| "id": "A String", # The id of the file.<br> |
| "md5Checksum": "A String", # An MD5 checksum for the content of this file. This will only be populated on files with content stored in Drive.<br> |
| "modifiedDate": "A String", # Last time this file was modified by anyone (formatted <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp).<br> |
| }</tt></dd></dl> |
| |
| <dl><dt><a name="Resource-update"><strong>update</strong></a> = method(self, **kwargs)</dt><dd><tt>Updates file metadata and/or content<br> |
| <br> |
| Args:<br> |
| body: object, The request body.<br> |
| The object takes the form of:<br> |
| <br> |
| {<br> |
| "mimeType": "A String", # The mimetype of the file<br> |
| "selfLink": "A String", # A link back to this file.<br> |
| "kind": "drive#file", # The type of file. This is always drive#file<br> |
| "description": "A String", # A short description of the file<br> |
| "title": "A String", # The title of this file.<br> |
| "modifiedByMeDate": "A String", # Last time this file was modified by the user (formatted <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp).<br> |
| "labels": { # Labels for the file.<br> |
| "hidden": True or False, # Whether this file is hidden from the user<br> |
| "starred": True or False, # Whether this file is starred by the user.<br> |
| "trashed": True or False, # Whether this file has been trashed.<br> |
| },<br> |
| "indexableText": { # Indexable text attributes for the file (can only be written)<br> |
| "text": "A String", # The text to be indexed for this file<br> |
| },<br> |
| "parentsCollection": [ # Collection of parent folders which contain this file.<br> |
| # On insert, setting this field will put the file in all of the provided folders. If no folders are provided, the file will be placed in the default root folder. On update, this field is ignored.<br> |
| {<br> |
| "parentLink": "A String", # A link to get the metadata for this parent<br> |
| "id": "A String", # The id of this parent<br> |
| },<br> |
| ],<br> |
| "downloadUrl": "A String", # Short term download URL for the file. This will only be populated on files with content stored in Drive.<br> |
| "userPermission": { # The permissions for the authenticated user on this file.<br> |
| "type": "A String", # The type of permission (For example: user, group etc).<br> |
| "kind": "drive#permission", # The kind of this permission. This is always drive#permission<br> |
| "etag": "A String", # An etag for this permission.<br> |
| "role": "A String", # The role that this permission describes. (For example: reader, writer, owner)<br> |
| "additionalRoles": [ # Any additional roles that this permission describes.<br> |
| "A String",<br> |
| ],<br> |
| },<br> |
| "etag": "A String", # ETag of the file.<br> |
| "fileSize": "A String", # The size of the file in bytes. This will only be populated on files with content stored in Drive.<br> |
| "createdDate": "A String", # Create time for this file (formatted ISO8601 timestamp).<br> |
| "fileExtension": "A String", # The file extension used when downloading this file. This field is read only. To set the extension, include it on title when creating the file. This will only be populated on files with content stored in Drive.<br> |
| "lastViewedDate": "A String", # Last time this file was viewed by anyone (formatted <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp).<br> |
| "id": "A String", # The id of the file.<br> |
| "md5Checksum": "A String", # An MD5 checksum for the content of this file. This will only be populated on files with content stored in Drive.<br> |
| "modifiedDate": "A String", # Last time this file was modified by anyone (formatted <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp).<br> |
| }<br> |
| <br> |
| media_body: string, The filename of the media request body.<br> |
| pp: string, A parameter<br> |
| trace: string, A parameter<br> |
| newRevision: boolean, Whether a blob upload should create a new revision. If not set or false, the blob data in the current head revision will be replaced.<br> |
| strict: string, A parameter<br> |
| userip: string, A parameter<br> |
| updateViewedDate: boolean, Whether to update the view date after successfully updating the file.<br> |
| updateModifiedDate: boolean, Controls updating the modified date of the file. If true, the modified date will be updated to the current time, regardless of whether other changes are being made. If false, the modified date will only be updated to the current time if other changes are also being made (changing the title, for example).<br> |
| id: string, The id for the file in question. (required)<br> |
| <br> |
| Returns:<br> |
| An object of the form<br> |
| <br> |
| {<br> |
| "mimeType": "A String", # The mimetype of the file<br> |
| "selfLink": "A String", # A link back to this file.<br> |
| "kind": "drive#file", # The type of file. This is always drive#file<br> |
| "description": "A String", # A short description of the file<br> |
| "title": "A String", # The title of this file.<br> |
| "modifiedByMeDate": "A String", # Last time this file was modified by the user (formatted <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp).<br> |
| "labels": { # Labels for the file.<br> |
| "hidden": True or False, # Whether this file is hidden from the user<br> |
| "starred": True or False, # Whether this file is starred by the user.<br> |
| "trashed": True or False, # Whether this file has been trashed.<br> |
| },<br> |
| "indexableText": { # Indexable text attributes for the file (can only be written)<br> |
| "text": "A String", # The text to be indexed for this file<br> |
| },<br> |
| "parentsCollection": [ # Collection of parent folders which contain this file.<br> |
| # On insert, setting this field will put the file in all of the provided folders. If no folders are provided, the file will be placed in the default root folder. On update, this field is ignored.<br> |
| {<br> |
| "parentLink": "A String", # A link to get the metadata for this parent<br> |
| "id": "A String", # The id of this parent<br> |
| },<br> |
| ],<br> |
| "downloadUrl": "A String", # Short term download URL for the file. This will only be populated on files with content stored in Drive.<br> |
| "userPermission": { # The permissions for the authenticated user on this file.<br> |
| "type": "A String", # The type of permission (For example: user, group etc).<br> |
| "kind": "drive#permission", # The kind of this permission. This is always drive#permission<br> |
| "etag": "A String", # An etag for this permission.<br> |
| "role": "A String", # The role that this permission describes. (For example: reader, writer, owner)<br> |
| "additionalRoles": [ # Any additional roles that this permission describes.<br> |
| "A String",<br> |
| ],<br> |
| },<br> |
| "etag": "A String", # ETag of the file.<br> |
| "fileSize": "A String", # The size of the file in bytes. This will only be populated on files with content stored in Drive.<br> |
| "createdDate": "A String", # Create time for this file (formatted ISO8601 timestamp).<br> |
| "fileExtension": "A String", # The file extension used when downloading this file. This field is read only. To set the extension, include it on title when creating the file. This will only be populated on files with content stored in Drive.<br> |
| "lastViewedDate": "A String", # Last time this file was viewed by anyone (formatted <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp).<br> |
| "id": "A String", # The id of the file.<br> |
| "md5Checksum": "A String", # An MD5 checksum for the content of this file. This will only be populated on files with content stored in Drive.<br> |
| "modifiedDate": "A String", # Last time this file was modified by anyone (formatted <a href="http://www.rfc-editor.org/rfc/rfc3339.txt">RFC 3339</a> timestamp).<br> |
| }</tt></dd></dl> |
| |
| <hr> |
| Data descriptors defined here:<br> |
| <dl><dt><strong>__dict__</strong></dt> |
| <dd><tt>dictionary for instance variables (if defined)</tt></dd> |
| </dl> |
| <dl><dt><strong>__weakref__</strong></dt> |
| <dd><tt>list of weak references to the object (if defined)</tt></dd> |
| </dl> |
| </td></tr></table> |
| </body></html> |