DocsClient simplifies interactions with the Documents List API.
Client for all features of the Google Documents List API.
Adds the given AclEntry to the given Resource.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.AclEntry containing information about new entry. Raises: ValueError: If given resource has no ACL link. |
Sends a batch request to the server to execute operation entries.
Parameters: |
|
---|
Applies the specified operation of each entry in a single request.
To use this, simply set acl_entry.batch_operation to one of [‘query’, ‘insert’, ‘update’, ‘delete’], and optionally set acl_entry.batch_id to a string of your choice.
Then, put all of your modified AclEntry objects into a list and pass that list as the entries parameter.
Parameters: |
|
---|---|
Return type: | Resulting gdata.docs.data.AclFeed of changes. |
Performs an auth request using the user’s email address and password.
In order to modify user specific data and read user private data, your application must be authorized by the user. One way to demonstrage authorization is by including a Client Login token in the Authorization HTTP header of all requests. This method requests the Client Login token by sending the user’s email address, password, the name of the application, and the service code for the service which will be accessed by the application. If the username and password are correct, the server will respond with the client login code and a new ClientLoginToken object will be set in the client’s auth_token member. With the auth_token set, future requests from this client will include the Client Login token.
For a list of service names, see http://code.google.com/apis/gdata/faq.html#clientlogin For more information on Client Login, see: http://code.google.com/apis/accounts/docs/AuthForInstalledApps.html
Parameters: |
|
---|
Copies the given entry to a new entry with the given title.
Note: Files do not support this feature.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Resource representing duplicated resource. |
Creates a new archive of resources.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Archive containing information about new archive. |
Creates new entries in Google Docs, and uploads their contents.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Resource containing information about new entry. |
Deletes the given AclEntry.
Parameters: |
|
---|---|
Return type: | Result of delete request. |
Aborts the given Archive operation, or deletes the Archive.
Parameters: |
|
---|---|
Return type: | Result of delete request. |
Trashes or deletes the given entry.
Parameters: |
|
---|---|
Return type: | Result of delete request. |
Deletes the given Revision.
Parameters: |
|
---|---|
Return type: | Result of delete request. |
Downloads the contents of the given entry to disk.
Note: to download a file in memory, use the DownloadResourceToMemory() method.
Parameters: |
|
---|
Returns the contents of the given entry.
Parameters: |
|
---|---|
Return type: | Content of given resource after being downloaded. Raises: gdata.client.RequestError if the download URL is malformed or the server’s response was not successful. |
Downloads the contents of the given entry to disk.
Note: to download a file in memory, use the DownloadResourceToMemory() method.
Parameters: |
|
---|
Returns the contents of the given entry.
Parameters: |
|
---|---|
Return type: | Content of given resource after being downloaded. Raises: gdata.client.RequestError if the download URL is malformed or the server’s response was not successful. |
Downloads the contents of the given revision to disk.
Note: to download a revision in memory, use the DownloadRevisionToMemory() method.
Parameters: |
|
---|
Returns the contents of the given revision.
Parameters: |
|
---|---|
Return type: | Content of given revision after being downloaded. Raises: gdata.client.RequestError if the download URL is malformed or the server’s response was not successful. |
Performs a request using the GET method, returns an HTTP response.
Exchanges an authorized OAuth request token for an access token.
Contacts the Google OAuth server to upgrade a previously authorized request token. Once the request token is upgraded to an access token, the access token may be used to access the user’s data.
For more details, see the Google Accounts OAuth documentation: http://code.google.com/apis/accounts/docs/OAuth.html#AccessToken
Parameters: |
|
---|
Retrieves an AclFeed for the given resource.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.AclFeed representing retrieved entries. |
Retrieves an AclEntry again.
This is useful if you need to poll for an ACL changing.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.AclEntry representing retrieved entry. |
Retrieves a particular AclEntry by its self link.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.AclEntry representing the retrieved entry. |
Retrieves all of a user’s non-collections or everything at the given URI.
Folders are not included in this by default. Pass in a custom URI to include collections in your query. The DocsQuery class is an easy way to generate such a URI.
This method makes multiple HTTP requests (by following the feed’s next links) in order to fetch the user’s entire document list.
Parameters: |
|
---|---|
Return type: | List of gdata.docs.data.Resource objects representing the retrieved entries. |
Retrieves an archive again given its entry.
This is useful if you need to poll for an archive completing.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Archive representing retrieved archive. |
Retrieves a particular archive by its self link.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Archive representing the retrieved archive. |
Retrieves changes to a user’s documents list.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.ChangeFeed. |
Retrieves the metadata of a user account.
Parameters: | kwargs – Other parameters to pass to self.get_entry(). |
---|---|
Return type: | gdata.docs.data.Metadata representing metadata of user’s account. |
Fetches the next set of results from the feed.
When requesting a feed, the number of entries returned is capped at a service specific default limit (often 25 entries). You can specify your own entry-count cap using the max-results URL query parameter. If there are more results than could fit under max-results, the feed will contain a next link. This method performs a GET against this next results URL.
Return type: | A new feed object containing the next set of entries in this feed. |
---|
Obtains an OAuth request token to allow the user to authorize this app.
Once this client has a request token, the user can authorize the request token by visiting the authorization URL in their browser. After being redirected back to this app at the ‘next’ URL, this app can then exchange the authorized request token for an access token.
For more information see the documentation on Google Accounts with OAuth: http://code.google.com/apis/accounts/docs/OAuth.html#AuthProcess
Parameters: |
|
---|
Retrieves a resource again given its entry.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Resource representing retrieved resource. |
Retrieves the ACL sharing permissions for the given entry.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.AclFeed representing the resource’s ACL. |
Retrieves a resource again given its resource ID.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Resource representing retrieved resource. |
Retrieves a particular resource by its self link.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Resource representing the retrieved resource. |
Retrieves the resources in a user’s docslist, or the given URI.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.ResourceFeed feed. |
Retrieves a revision again given its entry.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Revision representing retrieved revision. |
Retrieves a particular reivision by its self link.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Revision representing the retrieved revision. |
Retrieves the revision history for a resource.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.RevisionFeed representing the resource’s revisions. |
Adds or changes request before making the HTTP request.
This client will add the API version if it is specified. Subclasses may override this method to add their own request modifications before the request is made.
Moves an item into a different collection (or out of all collections).
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Resource of the moved entry. |
Publishes the given revision.
This method can only be used for document revisions.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Revision representing the updated revision. |
Sends data using the PUT method, returns an HTTP response.
Add support for imitating other users via 2-Legged OAuth.
Parameters: | uri – (optional) URI of the request in which to replace default with self.xoauth_requestor_id. |
---|---|
Return type: | Result of super(DocsClient, self).request(). |
Requests that the token be invalidated.
This method can be used for both AuthSub and OAuth tokens (to invalidate a ClientLogin token, the user must change their password).
Return type: | True if the server responded with a 200. Raises: A RequestError if the server responds with a non-200 status. |
---|
Unpublishes the given revision.
This method can only be used for document revisions.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Revision representing the updated revision. |
Edits the entry on the server by sending the XML for this entry.
Performs a PUT and converts the response to a new entry object with a matching class to the entry passed in.
Parameters: |
|
---|---|
Return type: | A new Entry object of a matching type to the entry which was passed in. |
Updates the given AclEntry with new metadata.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.AclEntry representing the updated ACL entry. |
Updates the given Archive with new metadata.
This method is really only useful for updating the notification email address of an archive that is being processed.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Archive representing the updated archive. |
Updates an entry in Google Docs with new metadata and/or new data.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Resource representing the updated entry. |
Asks the Google auth server for a multi-use AuthSub token.
For details on AuthSub, see: http://code.google.com/apis/accounts/docs/AuthSub.html
Parameters: |
|
---|---|
Return type: | The upgraded gdata.gauth.AuthSubToken object. |
Adds the given AclEntry to the given Resource.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.AclEntry containing information about new entry. Raises: ValueError: If given resource has no ACL link. |
Sends a batch request to the server to execute operation entries.
Parameters: |
|
---|
Applies the specified operation of each entry in a single request.
To use this, simply set acl_entry.batch_operation to one of [‘query’, ‘insert’, ‘update’, ‘delete’], and optionally set acl_entry.batch_id to a string of your choice.
Then, put all of your modified AclEntry objects into a list and pass that list as the entries parameter.
Parameters: |
|
---|---|
Return type: | Resulting gdata.docs.data.AclFeed of changes. |
Performs an auth request using the user’s email address and password.
In order to modify user specific data and read user private data, your application must be authorized by the user. One way to demonstrage authorization is by including a Client Login token in the Authorization HTTP header of all requests. This method requests the Client Login token by sending the user’s email address, password, the name of the application, and the service code for the service which will be accessed by the application. If the username and password are correct, the server will respond with the client login code and a new ClientLoginToken object will be set in the client’s auth_token member. With the auth_token set, future requests from this client will include the Client Login token.
For a list of service names, see http://code.google.com/apis/gdata/faq.html#clientlogin For more information on Client Login, see: http://code.google.com/apis/accounts/docs/AuthForInstalledApps.html
Parameters: |
|
---|
Copies the given entry to a new entry with the given title.
Note: Files do not support this feature.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Resource representing duplicated resource. |
Creates a new archive of resources.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Archive containing information about new archive. |
Creates new entries in Google Docs, and uploads their contents.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Resource containing information about new entry. |
Deletes the given AclEntry.
Parameters: |
|
---|---|
Return type: | Result of delete request. |
Aborts the given Archive operation, or deletes the Archive.
Parameters: |
|
---|---|
Return type: | Result of delete request. |
Trashes or deletes the given entry.
Parameters: |
|
---|---|
Return type: | Result of delete request. |
Deletes the given Revision.
Parameters: |
|
---|---|
Return type: | Result of delete request. |
Downloads the contents of the given entry to disk.
Note: to download a file in memory, use the DownloadResourceToMemory() method.
Parameters: |
|
---|
Returns the contents of the given entry.
Parameters: |
|
---|---|
Return type: | Content of given resource after being downloaded. Raises: gdata.client.RequestError if the download URL is malformed or the server’s response was not successful. |
Downloads the contents of the given entry to disk.
Note: to download a file in memory, use the DownloadResourceToMemory() method.
Parameters: |
|
---|
Returns the contents of the given entry.
Parameters: |
|
---|---|
Return type: | Content of given resource after being downloaded. Raises: gdata.client.RequestError if the download URL is malformed or the server’s response was not successful. |
Downloads the contents of the given revision to disk.
Note: to download a revision in memory, use the DownloadRevisionToMemory() method.
Parameters: |
|
---|
Returns the contents of the given revision.
Parameters: |
|
---|---|
Return type: | Content of given revision after being downloaded. Raises: gdata.client.RequestError if the download URL is malformed or the server’s response was not successful. |
Performs a request using the GET method, returns an HTTP response.
Exchanges an authorized OAuth request token for an access token.
Contacts the Google OAuth server to upgrade a previously authorized request token. Once the request token is upgraded to an access token, the access token may be used to access the user’s data.
For more details, see the Google Accounts OAuth documentation: http://code.google.com/apis/accounts/docs/OAuth.html#AccessToken
Parameters: |
|
---|
Retrieves an AclFeed for the given resource.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.AclFeed representing retrieved entries. |
Retrieves an AclEntry again.
This is useful if you need to poll for an ACL changing.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.AclEntry representing retrieved entry. |
Retrieves a particular AclEntry by its self link.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.AclEntry representing the retrieved entry. |
Retrieves all of a user’s non-collections or everything at the given URI.
Folders are not included in this by default. Pass in a custom URI to include collections in your query. The DocsQuery class is an easy way to generate such a URI.
This method makes multiple HTTP requests (by following the feed’s next links) in order to fetch the user’s entire document list.
Parameters: |
|
---|---|
Return type: | List of gdata.docs.data.Resource objects representing the retrieved entries. |
Retrieves an archive again given its entry.
This is useful if you need to poll for an archive completing.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Archive representing retrieved archive. |
Retrieves a particular archive by its self link.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Archive representing the retrieved archive. |
Retrieves changes to a user’s documents list.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.ChangeFeed. |
Retrieves the metadata of a user account.
Parameters: | kwargs – Other parameters to pass to self.get_entry(). |
---|---|
Return type: | gdata.docs.data.Metadata representing metadata of user’s account. |
Fetches the next set of results from the feed.
When requesting a feed, the number of entries returned is capped at a service specific default limit (often 25 entries). You can specify your own entry-count cap using the max-results URL query parameter. If there are more results than could fit under max-results, the feed will contain a next link. This method performs a GET against this next results URL.
Return type: | A new feed object containing the next set of entries in this feed. |
---|
Obtains an OAuth request token to allow the user to authorize this app.
Once this client has a request token, the user can authorize the request token by visiting the authorization URL in their browser. After being redirected back to this app at the ‘next’ URL, this app can then exchange the authorized request token for an access token.
For more information see the documentation on Google Accounts with OAuth: http://code.google.com/apis/accounts/docs/OAuth.html#AuthProcess
Parameters: |
|
---|
Retrieves a resource again given its entry.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Resource representing retrieved resource. |
Retrieves the ACL sharing permissions for the given entry.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.AclFeed representing the resource’s ACL. |
Retrieves a resource again given its resource ID.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Resource representing retrieved resource. |
Retrieves a particular resource by its self link.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Resource representing the retrieved resource. |
Retrieves the resources in a user’s docslist, or the given URI.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.ResourceFeed feed. |
Retrieves a revision again given its entry.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Revision representing retrieved revision. |
Retrieves a particular reivision by its self link.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Revision representing the retrieved revision. |
Retrieves the revision history for a resource.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.RevisionFeed representing the resource’s revisions. |
Adds or changes request before making the HTTP request.
This client will add the API version if it is specified. Subclasses may override this method to add their own request modifications before the request is made.
Moves an item into a different collection (or out of all collections).
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Resource of the moved entry. |
Publishes the given revision.
This method can only be used for document revisions.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Revision representing the updated revision. |
Sends data using the PUT method, returns an HTTP response.
Add support for imitating other users via 2-Legged OAuth.
Parameters: | uri – (optional) URI of the request in which to replace default with self.xoauth_requestor_id. |
---|---|
Return type: | Result of super(DocsClient, self).request(). |
Requests that the token be invalidated.
This method can be used for both AuthSub and OAuth tokens (to invalidate a ClientLogin token, the user must change their password).
Return type: | True if the server responded with a 200. Raises: A RequestError if the server responds with a non-200 status. |
---|
Unpublishes the given revision.
This method can only be used for document revisions.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Revision representing the updated revision. |
Edits the entry on the server by sending the XML for this entry.
Performs a PUT and converts the response to a new entry object with a matching class to the entry passed in.
Parameters: |
|
---|---|
Return type: | A new Entry object of a matching type to the entry which was passed in. |
Updates the given AclEntry with new metadata.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.AclEntry representing the updated ACL entry. |
Updates the given Archive with new metadata.
This method is really only useful for updating the notification email address of an archive that is being processed.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Archive representing the updated archive. |
Updates an entry in Google Docs with new metadata and/or new data.
Parameters: |
|
---|---|
Return type: | gdata.docs.data.Resource representing the updated entry. |
Asks the Google auth server for a multi-use AuthSub token.
For details on AuthSub, see: http://code.google.com/apis/accounts/docs/AuthSub.html
Parameters: |
|
---|---|
Return type: | The upgraded gdata.gauth.AuthSubToken object. |
Data model classes for representing elements of the Documents List API.
Resource ACL entry.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Finds the first link with rel of alternate and type of text/html.
Returns the URL to the media content, if the entry is a media entry. Otherwise returns None.
Get the URL to which new entries should be POSTed.
The POST target URL is used to insert new entries.
Return type: | A str for the URL in the link with a rel matching the POST type. |
---|
Find the first link with rel set to ‘self’
Return type: | A str containing the link’s href or None if none of the links had rel equal to ‘self’ |
---|
Returns the URL (as a string) in a link with the desired rel value.
Searches for a link or feed_link (if present) with the rel for ACL.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Returns a link object which has the desired rel value.
If you are interested in the URL instead of the link object, consider using find_url instead.
Converts this object to XML.
alias of AclAdditionalRole
alias of BatchId
alias of BatchOperation
alias of BatchStatus
alias of Content
alias of Control
Finds the first link with rel of alternate and type of text/html.
Returns the URL to the media content, if the entry is a media entry. Otherwise returns None.
Get the URL to which new entries should be POSTed.
The POST target URL is used to insert new entries.
Return type: | A str for the URL in the link with a rel matching the POST type. |
---|
Find the first link with rel set to ‘self’
Return type: | A str containing the link’s href or None if none of the links had rel equal to ‘self’ |
---|
Returns the URL (as a string) in a link with the desired rel value.
Searches for a link or feed_link (if present) with the rel for ACL.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Returns a link object which has the desired rel value.
If you are interested in the URL instead of the link object, consider using find_url instead.
alias of Id
alias of Published
alias of Rights
alias of AclRole
alias of AclScope
alias of Source
alias of Summary
alias of Title
Converts this object to XML.
alias of Updated
alias of AclWithKey
Resource ACL feed.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Finds the first link with rel of alternate and type of text/html.
Get the URL to which new entries should be POSTed.
The POST target URL is used to insert new entries.
Return type: | A str for the URL in the link with a rel matching the POST type. |
---|
Find the first link with rel set to ‘self’
Return type: | A str containing the link’s href or None if none of the links had rel equal to ‘self’ |
---|
Returns the URL (as a string) in a link with the desired rel value.
Searches for a link or feed_link (if present) with the rel for ACL.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Returns a link object which has the desired rel value.
If you are interested in the URL instead of the link object, consider using find_url instead.
Converts this object to XML.
Finds the first link with rel of alternate and type of text/html.
Get the URL to which new entries should be POSTed.
The POST target URL is used to insert new entries.
Return type: | A str for the URL in the link with a rel matching the POST type. |
---|
Find the first link with rel set to ‘self’
Return type: | A str containing the link’s href or None if none of the links had rel equal to ‘self’ |
---|
Returns the URL (as a string) in a link with the desired rel value.
alias of Generator
Searches for a link or feed_link (if present) with the rel for ACL.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Returns a link object which has the desired rel value.
If you are interested in the URL instead of the link object, consider using find_url instead.
alias of Icon
alias of Id
alias of ItemsPerPage
alias of Logo
alias of Rights
alias of StartIndex
alias of Subtitle
alias of Title
Converts this object to XML.
alias of TotalResults
alias of Updated
The DocList docs:additionalRoleInfo element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList docs:additionalRoleSet element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Archive entry.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Finds the first link with rel of alternate and type of text/html.
Returns the URL to the media content, if the entry is a media entry. Otherwise returns None.
Get the URL to which new entries should be POSTed.
The POST target URL is used to insert new entries.
Return type: | A str for the URL in the link with a rel matching the POST type. |
---|
Find the first link with rel set to ‘self’
Return type: | A str containing the link’s href or None if none of the links had rel equal to ‘self’ |
---|
Returns the URL (as a string) in a link with the desired rel value.
Searches for a link or feed_link (if present) with the rel for ACL.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Returns a link object which has the desired rel value.
If you are interested in the URL instead of the link object, consider using find_url instead.
Converts this object to XML.
alias of Content
alias of Control
alias of ArchiveComplete
Finds the first link with rel of alternate and type of text/html.
Returns the URL to the media content, if the entry is a media entry. Otherwise returns None.
Get the URL to which new entries should be POSTed.
The POST target URL is used to insert new entries.
Return type: | A str for the URL in the link with a rel matching the POST type. |
---|
Find the first link with rel set to ‘self’
Return type: | A str containing the link’s href or None if none of the links had rel equal to ‘self’ |
---|
Returns the URL (as a string) in a link with the desired rel value.
Searches for a link or feed_link (if present) with the rel for ACL.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Returns a link object which has the desired rel value.
If you are interested in the URL instead of the link object, consider using find_url instead.
alias of Id
alias of ArchiveNotify
alias of ArchiveNotifyStatus
alias of ArchiveTotalComplete
alias of ArchiveTotalFailure
alias of ArchiveTotal
alias of Published
alias of Rights
alias of QuotaBytesUsed
alias of Source
alias of ArchiveStatus
alias of Summary
alias of Title
Converts this object to XML.
alias of Updated
The DocList docs:archiveComplete element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList docs:removed element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList docs:archiveFailure element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList docs:archiveNotify element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList docs:archiveNotifyStatus element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList docs:removed element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList docs:archiveStatus element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList docs:archiveTotal element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList docs:archiveTotalComplete element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList docs:archiveTotalFailure element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Mixin to provide category finding functionality.
Analogous to atom.data.LinkFinder, but a simpler API, specialized for DocList categories.
Add a category for a scheme, term and label.
Parameters: |
|
---|---|
Return type: | The newly created atom.data.Category. |
Add a label, if it is not present.
Parameters: | label – The str label to set |
---|
Fetch the category elements for a scheme.
Parameters: | scheme – The scheme to fetch the elements for. |
---|---|
Return type: | Generator of atom.data.Category elements. |
Fetch the first category element for a scheme.
Parameters: | scheme – The scheme of category to return. |
---|---|
Return type: | atom.data.Category if found or None. |
Extracts the labels for this Resource.
This method returns the labels as a set, for example: ‘hidden’, ‘starred’, ‘viewed’.
Return type: | Set of string labels. |
---|
Extracts the type of document this Resource is.
This method returns the type of document the Resource represents. Possible values are document, presentation, drawing, spreadsheet, file, folder, form, item, or pdf.
‘folder’ is a possible return value of this method because, for legacy support, we have not yet renamed the folder keyword to collection in the API itself.
Return type: | String representing the type of document. |
---|
Whether this Resource has a label.
Parameters: | label – The str label to test for |
---|---|
Return type: | Boolean value indicating presence of label. |
Whether this Resource is hidden.
Return type: | Boolean value indicating that the resource is hidden. |
---|
Whether this resource is marked as mine.
Return type: | Boolean value indicating that the resource is marked as mine. |
---|
Whether this resource is private.
Return type: | Boolean value indicating that the resource is private. |
---|
Whether this resource is restricted download.
Return type: | Boolean value indicating whether the resource is restricted download. |
---|
Whether this resource is shared with the domain.
Return type: | Boolean value indicating that the resource is shared with the domain. |
---|
Whether this Resource is starred.
Return type: | Boolean value indicating that the resource is starred. |
---|
Whether this resource is trashed.
Return type: | Boolean value indicating that the resource is trashed. |
---|
Whether this Resource is viewed.
Return type: | Boolean value indicating that the resource is viewed. |
---|
Remove category elements for a scheme.
Parameters: | scheme – The scheme of category to remove. |
---|
Remove a label, if it is present.
Parameters: | label – The str label to remove |
---|
Set the document type for an entry, by building the appropriate atom.data.Category
Parameters: | label – str The value for the category entry. If None is passed the category is removed and not set. |
---|---|
Return type: | An atom.data.Category or None if label is None. |
Add a category for a scheme, term and label.
Parameters: |
|
---|---|
Return type: | The newly created atom.data.Category. |
Add a label, if it is not present.
Parameters: | label – The str label to set |
---|
Fetch the category elements for a scheme.
Parameters: | scheme – The scheme to fetch the elements for. |
---|---|
Return type: | Generator of atom.data.Category elements. |
Fetch the first category element for a scheme.
Parameters: | scheme – The scheme of category to return. |
---|---|
Return type: | atom.data.Category if found or None. |
Extracts the labels for this Resource.
This method returns the labels as a set, for example: ‘hidden’, ‘starred’, ‘viewed’.
Return type: | Set of string labels. |
---|
Extracts the type of document this Resource is.
This method returns the type of document the Resource represents. Possible values are document, presentation, drawing, spreadsheet, file, folder, form, item, or pdf.
‘folder’ is a possible return value of this method because, for legacy support, we have not yet renamed the folder keyword to collection in the API itself.
Return type: | String representing the type of document. |
---|
Whether this Resource has a label.
Parameters: | label – The str label to test for |
---|---|
Return type: | Boolean value indicating presence of label. |
Whether this Resource is hidden.
Return type: | Boolean value indicating that the resource is hidden. |
---|
Whether this resource is marked as mine.
Return type: | Boolean value indicating that the resource is marked as mine. |
---|
Whether this resource is private.
Return type: | Boolean value indicating that the resource is private. |
---|
Whether this resource is restricted download.
Return type: | Boolean value indicating whether the resource is restricted download. |
---|
Whether this resource is shared with the domain.
Return type: | Boolean value indicating that the resource is shared with the domain. |
---|
Whether this Resource is starred.
Return type: | Boolean value indicating that the resource is starred. |
---|
Whether this resource is trashed.
Return type: | Boolean value indicating that the resource is trashed. |
---|
Whether this Resource is viewed.
Return type: | Boolean value indicating that the resource is viewed. |
---|
Remove category elements for a scheme.
Parameters: | scheme – The scheme of category to remove. |
---|
Change feed entry.
Add a category for a scheme, term and label.
Parameters: |
|
---|---|
Return type: | The newly created atom.data.Category. |
Add a label, if it is not present.
Parameters: | label – The str label to set |
---|
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Finds the first link with rel of alternate and type of text/html.
Returns the URL to the media content, if the entry is a media entry. Otherwise returns None.
Get the URL to which new entries should be POSTed.
The POST target URL is used to insert new entries.
Return type: | A str for the URL in the link with a rel matching the POST type. |
---|
Find the first link with rel set to ‘self’
Return type: | A str containing the link’s href or None if none of the links had rel equal to ‘self’ |
---|
Returns the URL (as a string) in a link with the desired rel value.
Extracts the Resource’s ACL feed <gd:feedLink>.
Return type: | A gdata.data.FeedLink object. |
---|
Searches for a link or feed_link (if present) with the rel for ACL.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Fetch the category elements for a scheme.
Parameters: | scheme – The scheme to fetch the elements for. |
---|---|
Return type: | Generator of atom.data.Category elements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Fetch the first category element for a scheme.
Parameters: | scheme – The scheme of category to return. |
---|---|
Return type: | atom.data.Category if found or None. |
Extracts the labels for this Resource.
This method returns the labels as a set, for example: ‘hidden’, ‘starred’, ‘viewed’.
Return type: | Set of string labels. |
---|
Returns a link object which has the desired rel value.
If you are interested in the URL instead of the link object, consider using find_url instead.
Extracts the type of document this Resource is.
This method returns the type of document the Resource represents. Possible values are document, presentation, drawing, spreadsheet, file, folder, form, item, or pdf.
‘folder’ is a possible return value of this method because, for legacy support, we have not yet renamed the folder keyword to collection in the API itself.
Return type: | String representing the type of document. |
---|
Extracts the Resource’s resumable create link.
Return type: | A gdata.data.FeedLink object. |
---|
Extracts the Resource’s resumable update link.
Return type: | A gdata.data.FeedLink object. |
---|
Extracts the Resource’s revisions feed <gd:feedLink>.
Return type: | A gdata.data.FeedLink object. |
---|
Whether this Resource has a label.
Parameters: | label – The str label to test for |
---|---|
Return type: | Boolean value indicating presence of label. |
Returns the parents link(s) (collections) of this entry.
Whether this Resource is hidden.
Return type: | Boolean value indicating that the resource is hidden. |
---|
Whether this resource is marked as mine.
Return type: | Boolean value indicating that the resource is marked as mine. |
---|
Whether this resource is private.
Return type: | Boolean value indicating that the resource is private. |
---|
Whether this resource is restricted download.
Return type: | Boolean value indicating whether the resource is restricted download. |
---|
Whether this resource is shared with the domain.
Return type: | Boolean value indicating that the resource is shared with the domain. |
---|
Whether this Resource is starred.
Return type: | Boolean value indicating that the resource is starred. |
---|
Whether this resource is trashed.
Return type: | Boolean value indicating that the resource is trashed. |
---|
Whether this Resource is viewed.
Return type: | Boolean value indicating that the resource is viewed. |
---|
Remove category elements for a scheme.
Parameters: | scheme – The scheme of category to remove. |
---|
Remove a label, if it is present.
Parameters: | label – The str label to remove |
---|
Set the document type for an entry, by building the appropriate atom.data.Category
Parameters: | label – str The value for the category entry. If None is passed the category is removed and not set. |
---|---|
Return type: | An atom.data.Category or None if label is None. |
Converts this object to XML.
Add a category for a scheme, term and label.
Parameters: |
|
---|---|
Return type: | The newly created atom.data.Category. |
Add a label, if it is not present.
Parameters: | label – The str label to set |
---|
alias of Changestamp
alias of Content
alias of Control
Finds the first link with rel of alternate and type of text/html.
Returns the URL to the media content, if the entry is a media entry. Otherwise returns None.
Get the URL to which new entries should be POSTed.
The POST target URL is used to insert new entries.
Return type: | A str for the URL in the link with a rel matching the POST type. |
---|
Find the first link with rel set to ‘self’
Return type: | A str containing the link’s href or None if none of the links had rel equal to ‘self’ |
---|
Returns the URL (as a string) in a link with the desired rel value.
Extracts the Resource’s ACL feed <gd:feedLink>.
Return type: | A gdata.data.FeedLink object. |
---|
Searches for a link or feed_link (if present) with the rel for ACL.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Fetch the category elements for a scheme.
Parameters: | scheme – The scheme to fetch the elements for. |
---|---|
Return type: | Generator of atom.data.Category elements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Fetch the first category element for a scheme.
Parameters: | scheme – The scheme of category to return. |
---|---|
Return type: | atom.data.Category if found or None. |
Extracts the labels for this Resource.
This method returns the labels as a set, for example: ‘hidden’, ‘starred’, ‘viewed’.
Return type: | Set of string labels. |
---|
Returns a link object which has the desired rel value.
If you are interested in the URL instead of the link object, consider using find_url instead.
Extracts the type of document this Resource is.
This method returns the type of document the Resource represents. Possible values are document, presentation, drawing, spreadsheet, file, folder, form, item, or pdf.
‘folder’ is a possible return value of this method because, for legacy support, we have not yet renamed the folder keyword to collection in the API itself.
Return type: | String representing the type of document. |
---|
Extracts the Resource’s resumable create link.
Return type: | A gdata.data.FeedLink object. |
---|
Extracts the Resource’s resumable update link.
Return type: | A gdata.data.FeedLink object. |
---|
Extracts the Resource’s revisions feed <gd:feedLink>.
Return type: | A gdata.data.FeedLink object. |
---|
Whether this Resource has a label.
Parameters: | label – The str label to test for |
---|---|
Return type: | Boolean value indicating presence of label. |
alias of Id
Returns the parents link(s) (collections) of this entry.
Whether this Resource is hidden.
Return type: | Boolean value indicating that the resource is hidden. |
---|
Whether this resource is marked as mine.
Return type: | Boolean value indicating that the resource is marked as mine. |
---|
Whether this resource is private.
Return type: | Boolean value indicating that the resource is private. |
---|
Whether this resource is restricted download.
Return type: | Boolean value indicating whether the resource is restricted download. |
---|
Whether this resource is shared with the domain.
Return type: | Boolean value indicating that the resource is shared with the domain. |
---|
Whether this Resource is starred.
Return type: | Boolean value indicating that the resource is starred. |
---|
Whether this resource is trashed.
Return type: | Boolean value indicating that the resource is trashed. |
---|
Whether this Resource is viewed.
Return type: | Boolean value indicating that the resource is viewed. |
---|
alias of LastModifiedBy
alias of LastViewed
alias of Published
alias of QuotaBytesUsed
Remove category elements for a scheme.
Parameters: | scheme – The scheme of category to remove. |
---|
Remove a label, if it is present.
Parameters: | label – The str label to remove |
---|
alias of ResourceId
alias of Rights
Set the document type for an entry, by building the appropriate atom.data.Category
Parameters: | label – str The value for the category entry. If None is passed the category is removed and not set. |
---|---|
Return type: | An atom.data.Category or None if label is None. |
alias of Source
alias of SuggestedFilename
alias of Summary
alias of Title
Converts this object to XML.
alias of Updated
alias of WritersCanInvite
DocList Changes feed.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Finds the first link with rel of alternate and type of text/html.
Get the URL to which new entries should be POSTed.
The POST target URL is used to insert new entries.
Return type: | A str for the URL in the link with a rel matching the POST type. |
---|
Find the first link with rel set to ‘self’
Return type: | A str containing the link’s href or None if none of the links had rel equal to ‘self’ |
---|
Returns the URL (as a string) in a link with the desired rel value.
Searches for a link or feed_link (if present) with the rel for ACL.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Returns a link object which has the desired rel value.
If you are interested in the URL instead of the link object, consider using find_url instead.
Converts this object to XML.
Finds the first link with rel of alternate and type of text/html.
Get the URL to which new entries should be POSTed.
The POST target URL is used to insert new entries.
Return type: | A str for the URL in the link with a rel matching the POST type. |
---|
Find the first link with rel set to ‘self’
Return type: | A str containing the link’s href or None if none of the links had rel equal to ‘self’ |
---|
Returns the URL (as a string) in a link with the desired rel value.
alias of Generator
Searches for a link or feed_link (if present) with the rel for ACL.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Returns a link object which has the desired rel value.
If you are interested in the URL instead of the link object, consider using find_url instead.
alias of Icon
alias of Id
alias of ItemsPerPage
alias of Logo
alias of Rights
alias of StartIndex
alias of Subtitle
alias of Title
Converts this object to XML.
alias of TotalResults
alias of Updated
The DocList docs:changestamp element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList gd:deleted element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList docs:exportFormat element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList docs:feature element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
alias of FeatureName
alias of FeatureRate
Converts this object to XML.
The DocList docs:featureName element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList docs:featureRate element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList docs:filename element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList docs:importFormat element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList gd:lastModifiedBy element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
alias of Email
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
alias of Name
Converts this object to XML.
alias of Uri
The DocList gd:lastViewed element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
alias of Email
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
alias of Name
Converts this object to XML.
alias of Uri
The DocList docs:maxUploadSize element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Metadata entry for a user.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Finds the first link with rel of alternate and type of text/html.
Returns the URL to the media content, if the entry is a media entry. Otherwise returns None.
Get the URL to which new entries should be POSTed.
The POST target URL is used to insert new entries.
Return type: | A str for the URL in the link with a rel matching the POST type. |
---|
Find the first link with rel set to ‘self’
Return type: | A str containing the link’s href or None if none of the links had rel equal to ‘self’ |
---|
Returns the URL (as a string) in a link with the desired rel value.
Searches for a link or feed_link (if present) with the rel for ACL.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Returns a link object which has the desired rel value.
If you are interested in the URL instead of the link object, consider using find_url instead.
Converts this object to XML.
alias of Content
alias of Control
Finds the first link with rel of alternate and type of text/html.
Returns the URL to the media content, if the entry is a media entry. Otherwise returns None.
Get the URL to which new entries should be POSTed.
The POST target URL is used to insert new entries.
Return type: | A str for the URL in the link with a rel matching the POST type. |
---|
Find the first link with rel set to ‘self’
Return type: | A str containing the link’s href or None if none of the links had rel equal to ‘self’ |
---|
Returns the URL (as a string) in a link with the desired rel value.
Searches for a link or feed_link (if present) with the rel for ACL.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Returns a link object which has the desired rel value.
If you are interested in the URL instead of the link object, consider using find_url instead.
alias of Id
alias of Published
alias of QuotaBytesTotal
alias of QuotaBytesUsed
alias of QuotaBytesUsedInTrash
alias of Rights
alias of Source
alias of Summary
alias of Title
Converts this object to XML.
alias of Updated
The DocList docs:publish element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList docs:publishAuto element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList docs:publishOutsideDomain element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList gd:quotaBytesTotal element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList gd:quotaBytesUsed element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList docs:quotaBytesUsedInTrash element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList docs:removed element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
DocList version of an Atom Entry.
Add a category for a scheme, term and label.
Parameters: |
|
---|---|
Return type: | The newly created atom.data.Category. |
Add a label, if it is not present.
Parameters: | label – The str label to set |
---|
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Finds the first link with rel of alternate and type of text/html.
Returns the URL to the media content, if the entry is a media entry. Otherwise returns None.
Get the URL to which new entries should be POSTed.
The POST target URL is used to insert new entries.
Return type: | A str for the URL in the link with a rel matching the POST type. |
---|
Find the first link with rel set to ‘self’
Return type: | A str containing the link’s href or None if none of the links had rel equal to ‘self’ |
---|
Returns the URL (as a string) in a link with the desired rel value.
Extracts the Resource’s ACL feed <gd:feedLink>.
Return type: | A gdata.data.FeedLink object. |
---|
Searches for a link or feed_link (if present) with the rel for ACL.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Fetch the category elements for a scheme.
Parameters: | scheme – The scheme to fetch the elements for. |
---|---|
Return type: | Generator of atom.data.Category elements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Fetch the first category element for a scheme.
Parameters: | scheme – The scheme of category to return. |
---|---|
Return type: | atom.data.Category if found or None. |
Extracts the labels for this Resource.
This method returns the labels as a set, for example: ‘hidden’, ‘starred’, ‘viewed’.
Return type: | Set of string labels. |
---|
Returns a link object which has the desired rel value.
If you are interested in the URL instead of the link object, consider using find_url instead.
Extracts the type of document this Resource is.
This method returns the type of document the Resource represents. Possible values are document, presentation, drawing, spreadsheet, file, folder, form, item, or pdf.
‘folder’ is a possible return value of this method because, for legacy support, we have not yet renamed the folder keyword to collection in the API itself.
Return type: | String representing the type of document. |
---|
Extracts the Resource’s resumable create link.
Return type: | A gdata.data.FeedLink object. |
---|
Extracts the Resource’s resumable update link.
Return type: | A gdata.data.FeedLink object. |
---|
Extracts the Resource’s revisions feed <gd:feedLink>.
Return type: | A gdata.data.FeedLink object. |
---|
Whether this Resource has a label.
Parameters: | label – The str label to test for |
---|---|
Return type: | Boolean value indicating presence of label. |
Returns the parents link(s) (collections) of this entry.
Whether this Resource is hidden.
Return type: | Boolean value indicating that the resource is hidden. |
---|
Whether this resource is marked as mine.
Return type: | Boolean value indicating that the resource is marked as mine. |
---|
Whether this resource is private.
Return type: | Boolean value indicating that the resource is private. |
---|
Whether this resource is restricted download.
Return type: | Boolean value indicating whether the resource is restricted download. |
---|
Whether this resource is shared with the domain.
Return type: | Boolean value indicating that the resource is shared with the domain. |
---|
Whether this Resource is starred.
Return type: | Boolean value indicating that the resource is starred. |
---|
Whether this resource is trashed.
Return type: | Boolean value indicating that the resource is trashed. |
---|
Whether this Resource is viewed.
Return type: | Boolean value indicating that the resource is viewed. |
---|
Remove category elements for a scheme.
Parameters: | scheme – The scheme of category to remove. |
---|
Remove a label, if it is present.
Parameters: | label – The str label to remove |
---|
Set the document type for an entry, by building the appropriate atom.data.Category
Parameters: | label – str The value for the category entry. If None is passed the category is removed and not set. |
---|---|
Return type: | An atom.data.Category or None if label is None. |
Converts this object to XML.
Add a category for a scheme, term and label.
Parameters: |
|
---|---|
Return type: | The newly created atom.data.Category. |
Add a label, if it is not present.
Parameters: | label – The str label to set |
---|
alias of Content
alias of Control
Finds the first link with rel of alternate and type of text/html.
Returns the URL to the media content, if the entry is a media entry. Otherwise returns None.
Get the URL to which new entries should be POSTed.
The POST target URL is used to insert new entries.
Return type: | A str for the URL in the link with a rel matching the POST type. |
---|
Find the first link with rel set to ‘self’
Return type: | A str containing the link’s href or None if none of the links had rel equal to ‘self’ |
---|
Returns the URL (as a string) in a link with the desired rel value.
Extracts the Resource’s ACL feed <gd:feedLink>.
Return type: | A gdata.data.FeedLink object. |
---|
Searches for a link or feed_link (if present) with the rel for ACL.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Fetch the category elements for a scheme.
Parameters: | scheme – The scheme to fetch the elements for. |
---|---|
Return type: | Generator of atom.data.Category elements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Fetch the first category element for a scheme.
Parameters: | scheme – The scheme of category to return. |
---|---|
Return type: | atom.data.Category if found or None. |
Extracts the labels for this Resource.
This method returns the labels as a set, for example: ‘hidden’, ‘starred’, ‘viewed’.
Return type: | Set of string labels. |
---|
Returns a link object which has the desired rel value.
If you are interested in the URL instead of the link object, consider using find_url instead.
Extracts the type of document this Resource is.
This method returns the type of document the Resource represents. Possible values are document, presentation, drawing, spreadsheet, file, folder, form, item, or pdf.
‘folder’ is a possible return value of this method because, for legacy support, we have not yet renamed the folder keyword to collection in the API itself.
Return type: | String representing the type of document. |
---|
Extracts the Resource’s resumable create link.
Return type: | A gdata.data.FeedLink object. |
---|
Extracts the Resource’s resumable update link.
Return type: | A gdata.data.FeedLink object. |
---|
Extracts the Resource’s revisions feed <gd:feedLink>.
Return type: | A gdata.data.FeedLink object. |
---|
Whether this Resource has a label.
Parameters: | label – The str label to test for |
---|---|
Return type: | Boolean value indicating presence of label. |
alias of Id
Whether this Resource is hidden.
Return type: | Boolean value indicating that the resource is hidden. |
---|
Whether this resource is marked as mine.
Return type: | Boolean value indicating that the resource is marked as mine. |
---|
Whether this resource is private.
Return type: | Boolean value indicating that the resource is private. |
---|
Whether this resource is restricted download.
Return type: | Boolean value indicating whether the resource is restricted download. |
---|
Whether this resource is shared with the domain.
Return type: | Boolean value indicating that the resource is shared with the domain. |
---|
Whether this Resource is starred.
Return type: | Boolean value indicating that the resource is starred. |
---|
Whether this resource is trashed.
Return type: | Boolean value indicating that the resource is trashed. |
---|
Whether this Resource is viewed.
Return type: | Boolean value indicating that the resource is viewed. |
---|
alias of LastModifiedBy
alias of LastViewed
alias of Published
alias of QuotaBytesUsed
Remove category elements for a scheme.
Parameters: | scheme – The scheme of category to remove. |
---|
Remove a label, if it is present.
Parameters: | label – The str label to remove |
---|
alias of ResourceId
alias of Rights
Set the document type for an entry, by building the appropriate atom.data.Category
Parameters: | label – str The value for the category entry. If None is passed the category is removed and not set. |
---|---|
Return type: | An atom.data.Category or None if label is None. |
alias of Source
alias of SuggestedFilename
alias of Summary
alias of Title
Converts this object to XML.
alias of Updated
alias of WritersCanInvite
Main feed containing a list of resources.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Finds the first link with rel of alternate and type of text/html.
Get the URL to which new entries should be POSTed.
The POST target URL is used to insert new entries.
Return type: | A str for the URL in the link with a rel matching the POST type. |
---|
Find the first link with rel set to ‘self’
Return type: | A str containing the link’s href or None if none of the links had rel equal to ‘self’ |
---|
Returns the URL (as a string) in a link with the desired rel value.
Searches for a link or feed_link (if present) with the rel for ACL.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Returns a link object which has the desired rel value.
If you are interested in the URL instead of the link object, consider using find_url instead.
Converts this object to XML.
Finds the first link with rel of alternate and type of text/html.
Get the URL to which new entries should be POSTed.
The POST target URL is used to insert new entries.
Return type: | A str for the URL in the link with a rel matching the POST type. |
---|
Find the first link with rel set to ‘self’
Return type: | A str containing the link’s href or None if none of the links had rel equal to ‘self’ |
---|
Returns the URL (as a string) in a link with the desired rel value.
alias of Generator
Searches for a link or feed_link (if present) with the rel for ACL.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Returns a link object which has the desired rel value.
If you are interested in the URL instead of the link object, consider using find_url instead.
alias of Icon
alias of Id
alias of ItemsPerPage
alias of Logo
alias of Rights
alias of StartIndex
alias of Subtitle
alias of Title
Converts this object to XML.
alias of TotalResults
alias of Updated
The DocList gd:resourceId element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Resource Revision entry.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Finds the first link with rel of alternate and type of text/html.
Returns the URL to the media content, if the entry is a media entry. Otherwise returns None.
Get the URL to which new entries should be POSTed.
The POST target URL is used to insert new entries.
Return type: | A str for the URL in the link with a rel matching the POST type. |
---|
Get the link that points to the published resource on the web.
Return type: | A str for the URL in the link with a rel ending in #publish. |
---|
Find the first link with rel set to ‘self’
Return type: | A str containing the link’s href or None if none of the links had rel equal to ‘self’ |
---|
Returns the URL (as a string) in a link with the desired rel value.
Searches for a link or feed_link (if present) with the rel for ACL.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Returns a link object which has the desired rel value.
If you are interested in the URL instead of the link object, consider using find_url instead.
Get the link that points to the published resource on the web.
Return type: | A gdata.data.Link for the link with a rel ending in #publish. |
---|
Converts this object to XML.
alias of Content
alias of Control
Finds the first link with rel of alternate and type of text/html.
Returns the URL to the media content, if the entry is a media entry. Otherwise returns None.
Get the URL to which new entries should be POSTed.
The POST target URL is used to insert new entries.
Return type: | A str for the URL in the link with a rel matching the POST type. |
---|
Get the link that points to the published resource on the web.
Return type: | A str for the URL in the link with a rel ending in #publish. |
---|
Find the first link with rel set to ‘self’
Return type: | A str containing the link’s href or None if none of the links had rel equal to ‘self’ |
---|
Returns the URL (as a string) in a link with the desired rel value.
Searches for a link or feed_link (if present) with the rel for ACL.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Returns a link object which has the desired rel value.
If you are interested in the URL instead of the link object, consider using find_url instead.
Get the link that points to the published resource on the web.
Return type: | A gdata.data.Link for the link with a rel ending in #publish. |
---|
alias of Id
alias of PublishAuto
alias of PublishOutsideDomain
alias of Published
alias of Rights
alias of Source
alias of Summary
alias of Title
Converts this object to XML.
alias of Updated
A DocList Revision feed.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Finds the first link with rel of alternate and type of text/html.
Get the URL to which new entries should be POSTed.
The POST target URL is used to insert new entries.
Return type: | A str for the URL in the link with a rel matching the POST type. |
---|
Find the first link with rel set to ‘self’
Return type: | A str containing the link’s href or None if none of the links had rel equal to ‘self’ |
---|
Returns the URL (as a string) in a link with the desired rel value.
Searches for a link or feed_link (if present) with the rel for ACL.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Returns a link object which has the desired rel value.
If you are interested in the URL instead of the link object, consider using find_url instead.
Converts this object to XML.
Finds the first link with rel of alternate and type of text/html.
Get the URL to which new entries should be POSTed.
The POST target URL is used to insert new entries.
Return type: | A str for the URL in the link with a rel matching the POST type. |
---|
Find the first link with rel set to ‘self’
Return type: | A str containing the link’s href or None if none of the links had rel equal to ‘self’ |
---|
Returns the URL (as a string) in a link with the desired rel value.
alias of Generator
Searches for a link or feed_link (if present) with the rel for ACL.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Returns a link object which has the desired rel value.
If you are interested in the URL instead of the link object, consider using find_url instead.
alias of Icon
alias of Id
alias of ItemsPerPage
alias of Logo
alias of Rights
alias of StartIndex
alias of Subtitle
alias of Title
Converts this object to XML.
alias of TotalResults
alias of Updated
The DocList docs:suggestedFilename element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
The DocList docs:writersCanInvite element.
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.
Find all attributes which match the tag and namespace.
To find all attributes in this object, call get_attributes with the tag and namespace both set to None (the default). This method searches through the object’s members and the attributes stored in _other_attributes which did not fit any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of XmlAttribute objects for the matching attributes. |
Find all sub elements which match the tag and namespace.
To find all elements in this object, call get_elements with the tag and namespace both set to None (the default). This method searches through the object’s members and the elements stored in _other_elements which did not match any of the XML parsing rules for this class.
Parameters: |
|
---|---|
Return type: | A list of the matching XmlElements. |
Converts this object to XML.