gdata.blogger.data
index
/usr/lib/python2.7/dist-packages/gdata/blogger/data.py

Data model classes for parsing and generating XML for the Blogger API.

 
Modules
       
atom
gdata
re
urlparse

 
Classes
       
atom.core.XmlElement(__builtin__.object)
InReplyTo
gdata.data.GDEntry(atom.data.Entry, gdata.data.LinkFinder)
BloggerEntry
Blog
BlogPage
BlogPost
Comment
gdata.data.GDFeed(atom.data.Feed, gdata.data.LinkFinder)
BlogFeed
BlogPageFeed
BlogPostFeed
CommentFeed

 
class Blog(BloggerEntry)
    Represents a blog which belongs to the user.
 
 
Method resolution order:
Blog
BloggerEntry
gdata.data.GDEntry
atom.data.Entry
atom.data.FeedEntryParent
atom.core.XmlElement
gdata.data.LinkFinder
atom.data.LinkFinder
__builtin__.object

Methods inherited from BloggerEntry:
GetBlogId = get_blog_id(self)
Extracts the Blogger id of this blog.
 
This method is useful when contructing URLs by hand. The blog id is
often used in blogger operation URLs. This should not be confused with
the id member of a BloggerBlog. The id element is the Atom id XML element.
The blog id which this method returns is a part of the Atom id.
 
Returns:
  The blog's unique id as a string.
GetBlogName = get_blog_name(self)
Finds the name of this blog as used in the 'alternate' URL.
 
An alternate URL is in the form 'http://blogName.blogspot.com/'. For an
entry representing the above example, this method would return 'blogName'.
 
Returns:
  The blog's URL name component as a string.
get_blog_id(self)
Extracts the Blogger id of this blog.
 
This method is useful when contructing URLs by hand. The blog id is
often used in blogger operation URLs. This should not be confused with
the id member of a BloggerBlog. The id element is the Atom id XML element.
The blog id which this method returns is a part of the Atom id.
 
Returns:
  The blog's unique id as a string.
get_blog_name(self)
Finds the name of this blog as used in the 'alternate' URL.
 
An alternate URL is in the form 'http://blogName.blogspot.com/'. For an
entry representing the above example, this method would return 'blogName'.
 
Returns:
  The blog's URL name component as a string.

Methods inherited from gdata.data.GDEntry:
FindMediaLink = find_media_link(self)
Returns the URL to the media content, if the entry is a media entry.
Otherwise returns None.
GetId = get_id(self)
IsMedia = is_media(self)
find_media_link(self)
Returns the URL to the media content, if the entry is a media entry.
Otherwise returns None.
get_id(self)
is_media(self)

Data and other attributes inherited from gdata.data.GDEntry:
etag = '{http://schemas.google.com/g/2005}etag'

Data and other attributes inherited from atom.data.Entry:
content = <class 'atom.data.Content'>
The atom:content element.
control = <class 'atom.data.Control'>
The app:control element indicating restrictions on publication.
 
The APP control element may contain a draft element indicating whether or
not this entry should be publicly available.
published = <class 'atom.data.Published'>
The atom:published element.
source = <class 'atom.data.Source'>
The atom:source element.
summary = <class 'atom.data.Summary'>
The atom:summary element.

Methods inherited from atom.data.FeedEntryParent:
__init__(self, atom_id=None, text=None, *args, **kwargs)

Data and other attributes inherited from atom.data.FeedEntryParent:
author = [<class 'atom.data.Author'>]
category = [<class 'atom.data.Category'>]
contributor = [<class 'atom.data.Contributor'>]
id = <class 'atom.data.Id'>
The atom:id element.
link = [<class 'atom.data.Link'>]
rights = <class 'atom.data.Rights'>
The atom:rights element.
title = <class 'atom.data.Title'>
The atom:title element.
updated = <class 'atom.data.Updated'>
The atom:updated element.

Methods inherited from atom.core.XmlElement:
FindChildren = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
FindExtensions = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
GetAttributes = get_attributes(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching attributes.
 
Returns:
  A list of XmlAttribute objects for the matching attributes.
GetElements = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
ToString = to_string(self, version=1, encoding=None, pretty_print=None)
Converts this object to XML.
__str__(self)
get_attributes(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching attributes.
 
Returns:
  A list of XmlAttribute objects for the matching attributes.
get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
to_string(self, version=1, encoding=None, pretty_print=None)
Converts this object to XML.

Data descriptors inherited from atom.core.XmlElement:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)
attributes
children
extension_attributes
extension_elements
namespace
tag

Data and other attributes inherited from atom.core.XmlElement:
text = None

Methods inherited from gdata.data.LinkFinder:
FindAclLink = find_acl_link(self)
FindFeedLink = find_feed_link(self)
FindHtmlLink = find_html_link(self)
Finds the first link with rel of alternate and type of text/html.
FindPostLink = find_post_link(self)
Get the URL to which new entries should be POSTed.
 
The POST target URL is used to insert new entries.
 
Returns:
  A str for the URL in the link with a rel matching the POST type.
FindPreviousLink = find_previous_link(self)
GetAclLink = get_acl_link(self)
Searches for a link or feed_link (if present) with the rel for ACL.
GetFeedLink = get_feed_link(self)
GetHtmlLink = get_html_link(self)
GetPostLink = get_post_link(self)
GetPreviousLink = get_previous_link(self)
find_acl_link(self)
find_feed_link(self)
find_html_link(self)
Finds the first link with rel of alternate and type of text/html.
find_post_link(self)
Get the URL to which new entries should be POSTed.
 
The POST target URL is used to insert new entries.
 
Returns:
  A str for the URL in the link with a rel matching the POST type.
find_previous_link(self)
get_acl_link(self)
Searches for a link or feed_link (if present) with the rel for ACL.
get_feed_link(self)
get_html_link(self)
get_post_link(self)
get_previous_link(self)

Methods inherited from atom.data.LinkFinder:
FindAlternateLink = find_alternate_link(self)
FindEditLink = find_edit_link(self)
FindEditMediaLink = find_edit_media_link(self)
FindLicenseLink = find_license_link(self)
FindNextLink = find_next_link(self)
FindSelfLink = find_self_link(self)
Find the first link with rel set to 'self'
 
Returns:
  A str containing the link's href or None if none of the links had rel
  equal to 'self'
FindUrl = find_url(self, rel)
Returns the URL (as a string) in a link with the desired rel value.
GetAlternateLink = get_alternate_link(self)
GetEditLink = get_edit_link(self)
GetEditMediaLink = get_edit_media_link(self)
GetLicenseLink = get_license_link(self)
GetLink = get_link(self, rel)
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.
GetNextLink = get_next_link(self)
GetSelfLink = get_self_link(self)
find_alternate_link(self)
find_edit_link(self)
find_edit_media_link(self)
find_license_link(self)
find_next_link(self)
find_self_link(self)
Find the first link with rel set to 'self'
 
Returns:
  A str containing the link's href or None if none of the links had rel
  equal to 'self'
find_url(self, rel)
Returns the URL (as a string) in a link with the desired rel value.
get_alternate_link(self)
get_edit_link(self)
get_edit_media_link(self)
get_license_link(self)
get_link(self, rel)
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_next_link(self)
get_self_link(self)

 
class BlogFeed(gdata.data.GDFeed)
    
Method resolution order:
BlogFeed
gdata.data.GDFeed
atom.data.Feed
atom.data.Source
atom.data.FeedEntryParent
atom.core.XmlElement
gdata.data.LinkFinder
atom.data.LinkFinder
__builtin__.object

Data and other attributes defined here:
entry = [<class 'gdata.blogger.data.Blog'>]

Methods inherited from gdata.data.GDFeed:
GetId = get_id(self)
get_generator(self)
get_id(self)

Data and other attributes inherited from gdata.data.GDFeed:
etag = '{http://schemas.google.com/g/2005}etag'
items_per_page = <class 'gdata.data.ItemsPerPage'>
The opensearch:itemsPerPage element in GData feed.
start_index = <class 'gdata.data.StartIndex'>
The opensearch:startIndex element in GData feed.
total_results = <class 'gdata.data.TotalResults'>
opensearch:TotalResults for a GData feed.

Data and other attributes inherited from atom.data.Source:
generator = <class 'atom.data.Generator'>
The atom:generator element.
icon = <class 'atom.data.Icon'>
The atom:icon element.
logo = <class 'atom.data.Logo'>
The atom:logo element.
subtitle = <class 'atom.data.Subtitle'>
The atom:subtitle element.

Methods inherited from atom.data.FeedEntryParent:
__init__(self, atom_id=None, text=None, *args, **kwargs)

Data and other attributes inherited from atom.data.FeedEntryParent:
author = [<class 'atom.data.Author'>]
category = [<class 'atom.data.Category'>]
contributor = [<class 'atom.data.Contributor'>]
id = <class 'atom.data.Id'>
The atom:id element.
link = [<class 'atom.data.Link'>]
rights = <class 'atom.data.Rights'>
The atom:rights element.
title = <class 'atom.data.Title'>
The atom:title element.
updated = <class 'atom.data.Updated'>
The atom:updated element.

Methods inherited from atom.core.XmlElement:
FindChildren = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
FindExtensions = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
GetAttributes = get_attributes(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching attributes.
 
Returns:
  A list of XmlAttribute objects for the matching attributes.
GetElements = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
ToString = to_string(self, version=1, encoding=None, pretty_print=None)
Converts this object to XML.
__str__(self)
get_attributes(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching attributes.
 
Returns:
  A list of XmlAttribute objects for the matching attributes.
get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
to_string(self, version=1, encoding=None, pretty_print=None)
Converts this object to XML.

Data descriptors inherited from atom.core.XmlElement:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)
attributes
children
extension_attributes
extension_elements
namespace
tag

Data and other attributes inherited from atom.core.XmlElement:
text = None

Methods inherited from gdata.data.LinkFinder:
FindAclLink = find_acl_link(self)
FindFeedLink = find_feed_link(self)
FindHtmlLink = find_html_link(self)
Finds the first link with rel of alternate and type of text/html.
FindPostLink = find_post_link(self)
Get the URL to which new entries should be POSTed.
 
The POST target URL is used to insert new entries.
 
Returns:
  A str for the URL in the link with a rel matching the POST type.
FindPreviousLink = find_previous_link(self)
GetAclLink = get_acl_link(self)
Searches for a link or feed_link (if present) with the rel for ACL.
GetFeedLink = get_feed_link(self)
GetHtmlLink = get_html_link(self)
GetPostLink = get_post_link(self)
GetPreviousLink = get_previous_link(self)
find_acl_link(self)
find_feed_link(self)
find_html_link(self)
Finds the first link with rel of alternate and type of text/html.
find_post_link(self)
Get the URL to which new entries should be POSTed.
 
The POST target URL is used to insert new entries.
 
Returns:
  A str for the URL in the link with a rel matching the POST type.
find_previous_link(self)
get_acl_link(self)
Searches for a link or feed_link (if present) with the rel for ACL.
get_feed_link(self)
get_html_link(self)
get_post_link(self)
get_previous_link(self)

Methods inherited from atom.data.LinkFinder:
FindAlternateLink = find_alternate_link(self)
FindEditLink = find_edit_link(self)
FindEditMediaLink = find_edit_media_link(self)
FindLicenseLink = find_license_link(self)
FindNextLink = find_next_link(self)
FindSelfLink = find_self_link(self)
Find the first link with rel set to 'self'
 
Returns:
  A str containing the link's href or None if none of the links had rel
  equal to 'self'
FindUrl = find_url(self, rel)
Returns the URL (as a string) in a link with the desired rel value.
GetAlternateLink = get_alternate_link(self)
GetEditLink = get_edit_link(self)
GetEditMediaLink = get_edit_media_link(self)
GetLicenseLink = get_license_link(self)
GetLink = get_link(self, rel)
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.
GetNextLink = get_next_link(self)
GetSelfLink = get_self_link(self)
find_alternate_link(self)
find_edit_link(self)
find_edit_media_link(self)
find_license_link(self)
find_next_link(self)
find_self_link(self)
Find the first link with rel set to 'self'
 
Returns:
  A str containing the link's href or None if none of the links had rel
  equal to 'self'
find_url(self, rel)
Returns the URL (as a string) in a link with the desired rel value.
get_alternate_link(self)
get_edit_link(self)
get_edit_media_link(self)
get_license_link(self)
get_link(self, rel)
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_next_link(self)
get_self_link(self)

 
class BlogPage(BloggerEntry)
    Represents a single page on a blog.
 
 
Method resolution order:
BlogPage
BloggerEntry
gdata.data.GDEntry
atom.data.Entry
atom.data.FeedEntryParent
atom.core.XmlElement
gdata.data.LinkFinder
atom.data.LinkFinder
__builtin__.object

Methods defined here:
GetPageId = get_page_id(self)
get_page_id(self)
Extracts the pageID string from entry's Atom id.
 
Returns: A string of digits which identify this post within the blog.

Methods inherited from BloggerEntry:
GetBlogId = get_blog_id(self)
Extracts the Blogger id of this blog.
 
This method is useful when contructing URLs by hand. The blog id is
often used in blogger operation URLs. This should not be confused with
the id member of a BloggerBlog. The id element is the Atom id XML element.
The blog id which this method returns is a part of the Atom id.
 
Returns:
  The blog's unique id as a string.
GetBlogName = get_blog_name(self)
Finds the name of this blog as used in the 'alternate' URL.
 
An alternate URL is in the form 'http://blogName.blogspot.com/'. For an
entry representing the above example, this method would return 'blogName'.
 
Returns:
  The blog's URL name component as a string.
get_blog_id(self)
Extracts the Blogger id of this blog.
 
This method is useful when contructing URLs by hand. The blog id is
often used in blogger operation URLs. This should not be confused with
the id member of a BloggerBlog. The id element is the Atom id XML element.
The blog id which this method returns is a part of the Atom id.
 
Returns:
  The blog's unique id as a string.
get_blog_name(self)
Finds the name of this blog as used in the 'alternate' URL.
 
An alternate URL is in the form 'http://blogName.blogspot.com/'. For an
entry representing the above example, this method would return 'blogName'.
 
Returns:
  The blog's URL name component as a string.

Methods inherited from gdata.data.GDEntry:
FindMediaLink = find_media_link(self)
Returns the URL to the media content, if the entry is a media entry.
Otherwise returns None.
GetId = get_id(self)
IsMedia = is_media(self)
find_media_link(self)
Returns the URL to the media content, if the entry is a media entry.
Otherwise returns None.
get_id(self)
is_media(self)

Data and other attributes inherited from gdata.data.GDEntry:
etag = '{http://schemas.google.com/g/2005}etag'

Data and other attributes inherited from atom.data.Entry:
content = <class 'atom.data.Content'>
The atom:content element.
control = <class 'atom.data.Control'>
The app:control element indicating restrictions on publication.
 
The APP control element may contain a draft element indicating whether or
not this entry should be publicly available.
published = <class 'atom.data.Published'>
The atom:published element.
source = <class 'atom.data.Source'>
The atom:source element.
summary = <class 'atom.data.Summary'>
The atom:summary element.

Methods inherited from atom.data.FeedEntryParent:
__init__(self, atom_id=None, text=None, *args, **kwargs)

Data and other attributes inherited from atom.data.FeedEntryParent:
author = [<class 'atom.data.Author'>]
category = [<class 'atom.data.Category'>]
contributor = [<class 'atom.data.Contributor'>]
id = <class 'atom.data.Id'>
The atom:id element.
link = [<class 'atom.data.Link'>]
rights = <class 'atom.data.Rights'>
The atom:rights element.
title = <class 'atom.data.Title'>
The atom:title element.
updated = <class 'atom.data.Updated'>
The atom:updated element.

Methods inherited from atom.core.XmlElement:
FindChildren = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
FindExtensions = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
GetAttributes = get_attributes(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching attributes.
 
Returns:
  A list of XmlAttribute objects for the matching attributes.
GetElements = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
ToString = to_string(self, version=1, encoding=None, pretty_print=None)
Converts this object to XML.
__str__(self)
get_attributes(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching attributes.
 
Returns:
  A list of XmlAttribute objects for the matching attributes.
get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
to_string(self, version=1, encoding=None, pretty_print=None)
Converts this object to XML.

Data descriptors inherited from atom.core.XmlElement:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)
attributes
children
extension_attributes
extension_elements
namespace
tag

Data and other attributes inherited from atom.core.XmlElement:
text = None

Methods inherited from gdata.data.LinkFinder:
FindAclLink = find_acl_link(self)
FindFeedLink = find_feed_link(self)
FindHtmlLink = find_html_link(self)
Finds the first link with rel of alternate and type of text/html.
FindPostLink = find_post_link(self)
Get the URL to which new entries should be POSTed.
 
The POST target URL is used to insert new entries.
 
Returns:
  A str for the URL in the link with a rel matching the POST type.
FindPreviousLink = find_previous_link(self)
GetAclLink = get_acl_link(self)
Searches for a link or feed_link (if present) with the rel for ACL.
GetFeedLink = get_feed_link(self)
GetHtmlLink = get_html_link(self)
GetPostLink = get_post_link(self)
GetPreviousLink = get_previous_link(self)
find_acl_link(self)
find_feed_link(self)
find_html_link(self)
Finds the first link with rel of alternate and type of text/html.
find_post_link(self)
Get the URL to which new entries should be POSTed.
 
The POST target URL is used to insert new entries.
 
Returns:
  A str for the URL in the link with a rel matching the POST type.
find_previous_link(self)
get_acl_link(self)
Searches for a link or feed_link (if present) with the rel for ACL.
get_feed_link(self)
get_html_link(self)
get_post_link(self)
get_previous_link(self)

Methods inherited from atom.data.LinkFinder:
FindAlternateLink = find_alternate_link(self)
FindEditLink = find_edit_link(self)
FindEditMediaLink = find_edit_media_link(self)
FindLicenseLink = find_license_link(self)
FindNextLink = find_next_link(self)
FindSelfLink = find_self_link(self)
Find the first link with rel set to 'self'
 
Returns:
  A str containing the link's href or None if none of the links had rel
  equal to 'self'
FindUrl = find_url(self, rel)
Returns the URL (as a string) in a link with the desired rel value.
GetAlternateLink = get_alternate_link(self)
GetEditLink = get_edit_link(self)
GetEditMediaLink = get_edit_media_link(self)
GetLicenseLink = get_license_link(self)
GetLink = get_link(self, rel)
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.
GetNextLink = get_next_link(self)
GetSelfLink = get_self_link(self)
find_alternate_link(self)
find_edit_link(self)
find_edit_media_link(self)
find_license_link(self)
find_next_link(self)
find_self_link(self)
Find the first link with rel set to 'self'
 
Returns:
  A str containing the link's href or None if none of the links had rel
  equal to 'self'
find_url(self, rel)
Returns the URL (as a string) in a link with the desired rel value.
get_alternate_link(self)
get_edit_link(self)
get_edit_media_link(self)
get_license_link(self)
get_link(self, rel)
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_next_link(self)
get_self_link(self)

 
class BlogPageFeed(gdata.data.GDFeed)
    
Method resolution order:
BlogPageFeed
gdata.data.GDFeed
atom.data.Feed
atom.data.Source
atom.data.FeedEntryParent
atom.core.XmlElement
gdata.data.LinkFinder
atom.data.LinkFinder
__builtin__.object

Data and other attributes defined here:
entry = [<class 'gdata.blogger.data.BlogPage'>]

Methods inherited from gdata.data.GDFeed:
GetId = get_id(self)
get_generator(self)
get_id(self)

Data and other attributes inherited from gdata.data.GDFeed:
etag = '{http://schemas.google.com/g/2005}etag'
items_per_page = <class 'gdata.data.ItemsPerPage'>
The opensearch:itemsPerPage element in GData feed.
start_index = <class 'gdata.data.StartIndex'>
The opensearch:startIndex element in GData feed.
total_results = <class 'gdata.data.TotalResults'>
opensearch:TotalResults for a GData feed.

Data and other attributes inherited from atom.data.Source:
generator = <class 'atom.data.Generator'>
The atom:generator element.
icon = <class 'atom.data.Icon'>
The atom:icon element.
logo = <class 'atom.data.Logo'>
The atom:logo element.
subtitle = <class 'atom.data.Subtitle'>
The atom:subtitle element.

Methods inherited from atom.data.FeedEntryParent:
__init__(self, atom_id=None, text=None, *args, **kwargs)

Data and other attributes inherited from atom.data.FeedEntryParent:
author = [<class 'atom.data.Author'>]
category = [<class 'atom.data.Category'>]
contributor = [<class 'atom.data.Contributor'>]
id = <class 'atom.data.Id'>
The atom:id element.
link = [<class 'atom.data.Link'>]
rights = <class 'atom.data.Rights'>
The atom:rights element.
title = <class 'atom.data.Title'>
The atom:title element.
updated = <class 'atom.data.Updated'>
The atom:updated element.

Methods inherited from atom.core.XmlElement:
FindChildren = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
FindExtensions = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
GetAttributes = get_attributes(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching attributes.
 
Returns:
  A list of XmlAttribute objects for the matching attributes.
GetElements = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
ToString = to_string(self, version=1, encoding=None, pretty_print=None)
Converts this object to XML.
__str__(self)
get_attributes(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching attributes.
 
Returns:
  A list of XmlAttribute objects for the matching attributes.
get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
to_string(self, version=1, encoding=None, pretty_print=None)
Converts this object to XML.

Data descriptors inherited from atom.core.XmlElement:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)
attributes
children
extension_attributes
extension_elements
namespace
tag

Data and other attributes inherited from atom.core.XmlElement:
text = None

Methods inherited from gdata.data.LinkFinder:
FindAclLink = find_acl_link(self)
FindFeedLink = find_feed_link(self)
FindHtmlLink = find_html_link(self)
Finds the first link with rel of alternate and type of text/html.
FindPostLink = find_post_link(self)
Get the URL to which new entries should be POSTed.
 
The POST target URL is used to insert new entries.
 
Returns:
  A str for the URL in the link with a rel matching the POST type.
FindPreviousLink = find_previous_link(self)
GetAclLink = get_acl_link(self)
Searches for a link or feed_link (if present) with the rel for ACL.
GetFeedLink = get_feed_link(self)
GetHtmlLink = get_html_link(self)
GetPostLink = get_post_link(self)
GetPreviousLink = get_previous_link(self)
find_acl_link(self)
find_feed_link(self)
find_html_link(self)
Finds the first link with rel of alternate and type of text/html.
find_post_link(self)
Get the URL to which new entries should be POSTed.
 
The POST target URL is used to insert new entries.
 
Returns:
  A str for the URL in the link with a rel matching the POST type.
find_previous_link(self)
get_acl_link(self)
Searches for a link or feed_link (if present) with the rel for ACL.
get_feed_link(self)
get_html_link(self)
get_post_link(self)
get_previous_link(self)

Methods inherited from atom.data.LinkFinder:
FindAlternateLink = find_alternate_link(self)
FindEditLink = find_edit_link(self)
FindEditMediaLink = find_edit_media_link(self)
FindLicenseLink = find_license_link(self)
FindNextLink = find_next_link(self)
FindSelfLink = find_self_link(self)
Find the first link with rel set to 'self'
 
Returns:
  A str containing the link's href or None if none of the links had rel
  equal to 'self'
FindUrl = find_url(self, rel)
Returns the URL (as a string) in a link with the desired rel value.
GetAlternateLink = get_alternate_link(self)
GetEditLink = get_edit_link(self)
GetEditMediaLink = get_edit_media_link(self)
GetLicenseLink = get_license_link(self)
GetLink = get_link(self, rel)
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.
GetNextLink = get_next_link(self)
GetSelfLink = get_self_link(self)
find_alternate_link(self)
find_edit_link(self)
find_edit_media_link(self)
find_license_link(self)
find_next_link(self)
find_self_link(self)
Find the first link with rel set to 'self'
 
Returns:
  A str containing the link's href or None if none of the links had rel
  equal to 'self'
find_url(self, rel)
Returns the URL (as a string) in a link with the desired rel value.
get_alternate_link(self)
get_edit_link(self)
get_edit_media_link(self)
get_license_link(self)
get_link(self, rel)
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_next_link(self)
get_self_link(self)

 
class BlogPost(BloggerEntry)
    Represents a single post on a blog.
 
 
Method resolution order:
BlogPost
BloggerEntry
gdata.data.GDEntry
atom.data.Entry
atom.data.FeedEntryParent
atom.core.XmlElement
gdata.data.LinkFinder
atom.data.LinkFinder
__builtin__.object

Methods defined here:
AddLabel = add_label(self, label)
GetPostId = get_post_id(self)
add_label(self, label)
Adds a label to the blog post.
 
The label is represented by an Atom category element, so this method
is shorthand for appending a new atom.Category object.
 
Args:
  label: str
get_post_id(self)
Extracts the postID string from the entry's Atom id.
 
Returns: A string of digits which identify this post within the blog.

Methods inherited from BloggerEntry:
GetBlogId = get_blog_id(self)
Extracts the Blogger id of this blog.
 
This method is useful when contructing URLs by hand. The blog id is
often used in blogger operation URLs. This should not be confused with
the id member of a BloggerBlog. The id element is the Atom id XML element.
The blog id which this method returns is a part of the Atom id.
 
Returns:
  The blog's unique id as a string.
GetBlogName = get_blog_name(self)
Finds the name of this blog as used in the 'alternate' URL.
 
An alternate URL is in the form 'http://blogName.blogspot.com/'. For an
entry representing the above example, this method would return 'blogName'.
 
Returns:
  The blog's URL name component as a string.
get_blog_id(self)
Extracts the Blogger id of this blog.
 
This method is useful when contructing URLs by hand. The blog id is
often used in blogger operation URLs. This should not be confused with
the id member of a BloggerBlog. The id element is the Atom id XML element.
The blog id which this method returns is a part of the Atom id.
 
Returns:
  The blog's unique id as a string.
get_blog_name(self)
Finds the name of this blog as used in the 'alternate' URL.
 
An alternate URL is in the form 'http://blogName.blogspot.com/'. For an
entry representing the above example, this method would return 'blogName'.
 
Returns:
  The blog's URL name component as a string.

Methods inherited from gdata.data.GDEntry:
FindMediaLink = find_media_link(self)
Returns the URL to the media content, if the entry is a media entry.
Otherwise returns None.
GetId = get_id(self)
IsMedia = is_media(self)
find_media_link(self)
Returns the URL to the media content, if the entry is a media entry.
Otherwise returns None.
get_id(self)
is_media(self)

Data and other attributes inherited from gdata.data.GDEntry:
etag = '{http://schemas.google.com/g/2005}etag'

Data and other attributes inherited from atom.data.Entry:
content = <class 'atom.data.Content'>
The atom:content element.
control = <class 'atom.data.Control'>
The app:control element indicating restrictions on publication.
 
The APP control element may contain a draft element indicating whether or
not this entry should be publicly available.
published = <class 'atom.data.Published'>
The atom:published element.
source = <class 'atom.data.Source'>
The atom:source element.
summary = <class 'atom.data.Summary'>
The atom:summary element.

Methods inherited from atom.data.FeedEntryParent:
__init__(self, atom_id=None, text=None, *args, **kwargs)

Data and other attributes inherited from atom.data.FeedEntryParent:
author = [<class 'atom.data.Author'>]
category = [<class 'atom.data.Category'>]
contributor = [<class 'atom.data.Contributor'>]
id = <class 'atom.data.Id'>
The atom:id element.
link = [<class 'atom.data.Link'>]
rights = <class 'atom.data.Rights'>
The atom:rights element.
title = <class 'atom.data.Title'>
The atom:title element.
updated = <class 'atom.data.Updated'>
The atom:updated element.

Methods inherited from atom.core.XmlElement:
FindChildren = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
FindExtensions = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
GetAttributes = get_attributes(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching attributes.
 
Returns:
  A list of XmlAttribute objects for the matching attributes.
GetElements = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
ToString = to_string(self, version=1, encoding=None, pretty_print=None)
Converts this object to XML.
__str__(self)
get_attributes(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching attributes.
 
Returns:
  A list of XmlAttribute objects for the matching attributes.
get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
to_string(self, version=1, encoding=None, pretty_print=None)
Converts this object to XML.

Data descriptors inherited from atom.core.XmlElement:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)
attributes
children
extension_attributes
extension_elements
namespace
tag

Data and other attributes inherited from atom.core.XmlElement:
text = None

Methods inherited from gdata.data.LinkFinder:
FindAclLink = find_acl_link(self)
FindFeedLink = find_feed_link(self)
FindHtmlLink = find_html_link(self)
Finds the first link with rel of alternate and type of text/html.
FindPostLink = find_post_link(self)
Get the URL to which new entries should be POSTed.
 
The POST target URL is used to insert new entries.
 
Returns:
  A str for the URL in the link with a rel matching the POST type.
FindPreviousLink = find_previous_link(self)
GetAclLink = get_acl_link(self)
Searches for a link or feed_link (if present) with the rel for ACL.
GetFeedLink = get_feed_link(self)
GetHtmlLink = get_html_link(self)
GetPostLink = get_post_link(self)
GetPreviousLink = get_previous_link(self)
find_acl_link(self)
find_feed_link(self)
find_html_link(self)
Finds the first link with rel of alternate and type of text/html.
find_post_link(self)
Get the URL to which new entries should be POSTed.
 
The POST target URL is used to insert new entries.
 
Returns:
  A str for the URL in the link with a rel matching the POST type.
find_previous_link(self)
get_acl_link(self)
Searches for a link or feed_link (if present) with the rel for ACL.
get_feed_link(self)
get_html_link(self)
get_post_link(self)
get_previous_link(self)

Methods inherited from atom.data.LinkFinder:
FindAlternateLink = find_alternate_link(self)
FindEditLink = find_edit_link(self)
FindEditMediaLink = find_edit_media_link(self)
FindLicenseLink = find_license_link(self)
FindNextLink = find_next_link(self)
FindSelfLink = find_self_link(self)
Find the first link with rel set to 'self'
 
Returns:
  A str containing the link's href or None if none of the links had rel
  equal to 'self'
FindUrl = find_url(self, rel)
Returns the URL (as a string) in a link with the desired rel value.
GetAlternateLink = get_alternate_link(self)
GetEditLink = get_edit_link(self)
GetEditMediaLink = get_edit_media_link(self)
GetLicenseLink = get_license_link(self)
GetLink = get_link(self, rel)
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.
GetNextLink = get_next_link(self)
GetSelfLink = get_self_link(self)
find_alternate_link(self)
find_edit_link(self)
find_edit_media_link(self)
find_license_link(self)
find_next_link(self)
find_self_link(self)
Find the first link with rel set to 'self'
 
Returns:
  A str containing the link's href or None if none of the links had rel
  equal to 'self'
find_url(self, rel)
Returns the URL (as a string) in a link with the desired rel value.
get_alternate_link(self)
get_edit_link(self)
get_edit_media_link(self)
get_license_link(self)
get_link(self, rel)
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_next_link(self)
get_self_link(self)

 
class BlogPostFeed(gdata.data.GDFeed)
    
Method resolution order:
BlogPostFeed
gdata.data.GDFeed
atom.data.Feed
atom.data.Source
atom.data.FeedEntryParent
atom.core.XmlElement
gdata.data.LinkFinder
atom.data.LinkFinder
__builtin__.object

Data and other attributes defined here:
entry = [<class 'gdata.blogger.data.BlogPost'>]

Methods inherited from gdata.data.GDFeed:
GetId = get_id(self)
get_generator(self)
get_id(self)

Data and other attributes inherited from gdata.data.GDFeed:
etag = '{http://schemas.google.com/g/2005}etag'
items_per_page = <class 'gdata.data.ItemsPerPage'>
The opensearch:itemsPerPage element in GData feed.
start_index = <class 'gdata.data.StartIndex'>
The opensearch:startIndex element in GData feed.
total_results = <class 'gdata.data.TotalResults'>
opensearch:TotalResults for a GData feed.

Data and other attributes inherited from atom.data.Source:
generator = <class 'atom.data.Generator'>
The atom:generator element.
icon = <class 'atom.data.Icon'>
The atom:icon element.
logo = <class 'atom.data.Logo'>
The atom:logo element.
subtitle = <class 'atom.data.Subtitle'>
The atom:subtitle element.

Methods inherited from atom.data.FeedEntryParent:
__init__(self, atom_id=None, text=None, *args, **kwargs)

Data and other attributes inherited from atom.data.FeedEntryParent:
author = [<class 'atom.data.Author'>]
category = [<class 'atom.data.Category'>]
contributor = [<class 'atom.data.Contributor'>]
id = <class 'atom.data.Id'>
The atom:id element.
link = [<class 'atom.data.Link'>]
rights = <class 'atom.data.Rights'>
The atom:rights element.
title = <class 'atom.data.Title'>
The atom:title element.
updated = <class 'atom.data.Updated'>
The atom:updated element.

Methods inherited from atom.core.XmlElement:
FindChildren = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
FindExtensions = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
GetAttributes = get_attributes(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching attributes.
 
Returns:
  A list of XmlAttribute objects for the matching attributes.
GetElements = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
ToString = to_string(self, version=1, encoding=None, pretty_print=None)
Converts this object to XML.
__str__(self)
get_attributes(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching attributes.
 
Returns:
  A list of XmlAttribute objects for the matching attributes.
get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
to_string(self, version=1, encoding=None, pretty_print=None)
Converts this object to XML.

Data descriptors inherited from atom.core.XmlElement:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)
attributes
children
extension_attributes
extension_elements
namespace
tag

Data and other attributes inherited from atom.core.XmlElement:
text = None

Methods inherited from gdata.data.LinkFinder:
FindAclLink = find_acl_link(self)
FindFeedLink = find_feed_link(self)
FindHtmlLink = find_html_link(self)
Finds the first link with rel of alternate and type of text/html.
FindPostLink = find_post_link(self)
Get the URL to which new entries should be POSTed.
 
The POST target URL is used to insert new entries.
 
Returns:
  A str for the URL in the link with a rel matching the POST type.
FindPreviousLink = find_previous_link(self)
GetAclLink = get_acl_link(self)
Searches for a link or feed_link (if present) with the rel for ACL.
GetFeedLink = get_feed_link(self)
GetHtmlLink = get_html_link(self)
GetPostLink = get_post_link(self)
GetPreviousLink = get_previous_link(self)
find_acl_link(self)
find_feed_link(self)
find_html_link(self)
Finds the first link with rel of alternate and type of text/html.
find_post_link(self)
Get the URL to which new entries should be POSTed.
 
The POST target URL is used to insert new entries.
 
Returns:
  A str for the URL in the link with a rel matching the POST type.
find_previous_link(self)
get_acl_link(self)
Searches for a link or feed_link (if present) with the rel for ACL.
get_feed_link(self)
get_html_link(self)
get_post_link(self)
get_previous_link(self)

Methods inherited from atom.data.LinkFinder:
FindAlternateLink = find_alternate_link(self)
FindEditLink = find_edit_link(self)
FindEditMediaLink = find_edit_media_link(self)
FindLicenseLink = find_license_link(self)
FindNextLink = find_next_link(self)
FindSelfLink = find_self_link(self)
Find the first link with rel set to 'self'
 
Returns:
  A str containing the link's href or None if none of the links had rel
  equal to 'self'
FindUrl = find_url(self, rel)
Returns the URL (as a string) in a link with the desired rel value.
GetAlternateLink = get_alternate_link(self)
GetEditLink = get_edit_link(self)
GetEditMediaLink = get_edit_media_link(self)
GetLicenseLink = get_license_link(self)
GetLink = get_link(self, rel)
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.
GetNextLink = get_next_link(self)
GetSelfLink = get_self_link(self)
find_alternate_link(self)
find_edit_link(self)
find_edit_media_link(self)
find_license_link(self)
find_next_link(self)
find_self_link(self)
Find the first link with rel set to 'self'
 
Returns:
  A str containing the link's href or None if none of the links had rel
  equal to 'self'
find_url(self, rel)
Returns the URL (as a string) in a link with the desired rel value.
get_alternate_link(self)
get_edit_link(self)
get_edit_media_link(self)
get_license_link(self)
get_link(self, rel)
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_next_link(self)
get_self_link(self)

 
class BloggerEntry(gdata.data.GDEntry)
    Adds convenience methods inherited by all Blogger entries.
 
 
Method resolution order:
BloggerEntry
gdata.data.GDEntry
atom.data.Entry
atom.data.FeedEntryParent
atom.core.XmlElement
gdata.data.LinkFinder
atom.data.LinkFinder
__builtin__.object

Methods defined here:
GetBlogId = get_blog_id(self)
GetBlogName = get_blog_name(self)
get_blog_id(self)
Extracts the Blogger id of this blog.
 
This method is useful when contructing URLs by hand. The blog id is
often used in blogger operation URLs. This should not be confused with
the id member of a BloggerBlog. The id element is the Atom id XML element.
The blog id which this method returns is a part of the Atom id.
 
Returns:
  The blog's unique id as a string.
get_blog_name(self)
Finds the name of this blog as used in the 'alternate' URL.
 
An alternate URL is in the form 'http://blogName.blogspot.com/'. For an
entry representing the above example, this method would return 'blogName'.
 
Returns:
  The blog's URL name component as a string.

Methods inherited from gdata.data.GDEntry:
FindMediaLink = find_media_link(self)
Returns the URL to the media content, if the entry is a media entry.
Otherwise returns None.
GetId = get_id(self)
IsMedia = is_media(self)
find_media_link(self)
Returns the URL to the media content, if the entry is a media entry.
Otherwise returns None.
get_id(self)
is_media(self)

Data and other attributes inherited from gdata.data.GDEntry:
etag = '{http://schemas.google.com/g/2005}etag'

Data and other attributes inherited from atom.data.Entry:
content = <class 'atom.data.Content'>
The atom:content element.
control = <class 'atom.data.Control'>
The app:control element indicating restrictions on publication.
 
The APP control element may contain a draft element indicating whether or
not this entry should be publicly available.
published = <class 'atom.data.Published'>
The atom:published element.
source = <class 'atom.data.Source'>
The atom:source element.
summary = <class 'atom.data.Summary'>
The atom:summary element.

Methods inherited from atom.data.FeedEntryParent:
__init__(self, atom_id=None, text=None, *args, **kwargs)

Data and other attributes inherited from atom.data.FeedEntryParent:
author = [<class 'atom.data.Author'>]
category = [<class 'atom.data.Category'>]
contributor = [<class 'atom.data.Contributor'>]
id = <class 'atom.data.Id'>
The atom:id element.
link = [<class 'atom.data.Link'>]
rights = <class 'atom.data.Rights'>
The atom:rights element.
title = <class 'atom.data.Title'>
The atom:title element.
updated = <class 'atom.data.Updated'>
The atom:updated element.

Methods inherited from atom.core.XmlElement:
FindChildren = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
FindExtensions = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
GetAttributes = get_attributes(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching attributes.
 
Returns:
  A list of XmlAttribute objects for the matching attributes.
GetElements = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
ToString = to_string(self, version=1, encoding=None, pretty_print=None)
Converts this object to XML.
__str__(self)
get_attributes(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching attributes.
 
Returns:
  A list of XmlAttribute objects for the matching attributes.
get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
to_string(self, version=1, encoding=None, pretty_print=None)
Converts this object to XML.

Data descriptors inherited from atom.core.XmlElement:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)
attributes
children
extension_attributes
extension_elements
namespace
tag

Data and other attributes inherited from atom.core.XmlElement:
text = None

Methods inherited from gdata.data.LinkFinder:
FindAclLink = find_acl_link(self)
FindFeedLink = find_feed_link(self)
FindHtmlLink = find_html_link(self)
Finds the first link with rel of alternate and type of text/html.
FindPostLink = find_post_link(self)
Get the URL to which new entries should be POSTed.
 
The POST target URL is used to insert new entries.
 
Returns:
  A str for the URL in the link with a rel matching the POST type.
FindPreviousLink = find_previous_link(self)
GetAclLink = get_acl_link(self)
Searches for a link or feed_link (if present) with the rel for ACL.
GetFeedLink = get_feed_link(self)
GetHtmlLink = get_html_link(self)
GetPostLink = get_post_link(self)
GetPreviousLink = get_previous_link(self)
find_acl_link(self)
find_feed_link(self)
find_html_link(self)
Finds the first link with rel of alternate and type of text/html.
find_post_link(self)
Get the URL to which new entries should be POSTed.
 
The POST target URL is used to insert new entries.
 
Returns:
  A str for the URL in the link with a rel matching the POST type.
find_previous_link(self)
get_acl_link(self)
Searches for a link or feed_link (if present) with the rel for ACL.
get_feed_link(self)
get_html_link(self)
get_post_link(self)
get_previous_link(self)

Methods inherited from atom.data.LinkFinder:
FindAlternateLink = find_alternate_link(self)
FindEditLink = find_edit_link(self)
FindEditMediaLink = find_edit_media_link(self)
FindLicenseLink = find_license_link(self)
FindNextLink = find_next_link(self)
FindSelfLink = find_self_link(self)
Find the first link with rel set to 'self'
 
Returns:
  A str containing the link's href or None if none of the links had rel
  equal to 'self'
FindUrl = find_url(self, rel)
Returns the URL (as a string) in a link with the desired rel value.
GetAlternateLink = get_alternate_link(self)
GetEditLink = get_edit_link(self)
GetEditMediaLink = get_edit_media_link(self)
GetLicenseLink = get_license_link(self)
GetLink = get_link(self, rel)
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.
GetNextLink = get_next_link(self)
GetSelfLink = get_self_link(self)
find_alternate_link(self)
find_edit_link(self)
find_edit_media_link(self)
find_license_link(self)
find_next_link(self)
find_self_link(self)
Find the first link with rel set to 'self'
 
Returns:
  A str containing the link's href or None if none of the links had rel
  equal to 'self'
find_url(self, rel)
Returns the URL (as a string) in a link with the desired rel value.
get_alternate_link(self)
get_edit_link(self)
get_edit_media_link(self)
get_license_link(self)
get_link(self, rel)
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_next_link(self)
get_self_link(self)

 
class Comment(BloggerEntry)
    Blog post comment entry in a feed listing comments on a post or blog.
 
 
Method resolution order:
Comment
BloggerEntry
gdata.data.GDEntry
atom.data.Entry
atom.data.FeedEntryParent
atom.core.XmlElement
gdata.data.LinkFinder
atom.data.LinkFinder
__builtin__.object

Methods defined here:
GetCommentId = get_comment_id(self)
get_comment_id(self)
Extracts the commentID string from the entry's Atom id.
 
Returns: A string of digits which identify this post within the blog.

Data and other attributes defined here:
in_reply_to = <class 'gdata.blogger.data.InReplyTo'>

Methods inherited from BloggerEntry:
GetBlogId = get_blog_id(self)
Extracts the Blogger id of this blog.
 
This method is useful when contructing URLs by hand. The blog id is
often used in blogger operation URLs. This should not be confused with
the id member of a BloggerBlog. The id element is the Atom id XML element.
The blog id which this method returns is a part of the Atom id.
 
Returns:
  The blog's unique id as a string.
GetBlogName = get_blog_name(self)
Finds the name of this blog as used in the 'alternate' URL.
 
An alternate URL is in the form 'http://blogName.blogspot.com/'. For an
entry representing the above example, this method would return 'blogName'.
 
Returns:
  The blog's URL name component as a string.
get_blog_id(self)
Extracts the Blogger id of this blog.
 
This method is useful when contructing URLs by hand. The blog id is
often used in blogger operation URLs. This should not be confused with
the id member of a BloggerBlog. The id element is the Atom id XML element.
The blog id which this method returns is a part of the Atom id.
 
Returns:
  The blog's unique id as a string.
get_blog_name(self)
Finds the name of this blog as used in the 'alternate' URL.
 
An alternate URL is in the form 'http://blogName.blogspot.com/'. For an
entry representing the above example, this method would return 'blogName'.
 
Returns:
  The blog's URL name component as a string.

Methods inherited from gdata.data.GDEntry:
FindMediaLink = find_media_link(self)
Returns the URL to the media content, if the entry is a media entry.
Otherwise returns None.
GetId = get_id(self)
IsMedia = is_media(self)
find_media_link(self)
Returns the URL to the media content, if the entry is a media entry.
Otherwise returns None.
get_id(self)
is_media(self)

Data and other attributes inherited from gdata.data.GDEntry:
etag = '{http://schemas.google.com/g/2005}etag'

Data and other attributes inherited from atom.data.Entry:
content = <class 'atom.data.Content'>
The atom:content element.
control = <class 'atom.data.Control'>
The app:control element indicating restrictions on publication.
 
The APP control element may contain a draft element indicating whether or
not this entry should be publicly available.
published = <class 'atom.data.Published'>
The atom:published element.
source = <class 'atom.data.Source'>
The atom:source element.
summary = <class 'atom.data.Summary'>
The atom:summary element.

Methods inherited from atom.data.FeedEntryParent:
__init__(self, atom_id=None, text=None, *args, **kwargs)

Data and other attributes inherited from atom.data.FeedEntryParent:
author = [<class 'atom.data.Author'>]
category = [<class 'atom.data.Category'>]
contributor = [<class 'atom.data.Contributor'>]
id = <class 'atom.data.Id'>
The atom:id element.
link = [<class 'atom.data.Link'>]
rights = <class 'atom.data.Rights'>
The atom:rights element.
title = <class 'atom.data.Title'>
The atom:title element.
updated = <class 'atom.data.Updated'>
The atom:updated element.

Methods inherited from atom.core.XmlElement:
FindChildren = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
FindExtensions = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
GetAttributes = get_attributes(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching attributes.
 
Returns:
  A list of XmlAttribute objects for the matching attributes.
GetElements = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
ToString = to_string(self, version=1, encoding=None, pretty_print=None)
Converts this object to XML.
__str__(self)
get_attributes(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching attributes.
 
Returns:
  A list of XmlAttribute objects for the matching attributes.
get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
to_string(self, version=1, encoding=None, pretty_print=None)
Converts this object to XML.

Data descriptors inherited from atom.core.XmlElement:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)
attributes
children
extension_attributes
extension_elements
namespace
tag

Data and other attributes inherited from atom.core.XmlElement:
text = None

Methods inherited from gdata.data.LinkFinder:
FindAclLink = find_acl_link(self)
FindFeedLink = find_feed_link(self)
FindHtmlLink = find_html_link(self)
Finds the first link with rel of alternate and type of text/html.
FindPostLink = find_post_link(self)
Get the URL to which new entries should be POSTed.
 
The POST target URL is used to insert new entries.
 
Returns:
  A str for the URL in the link with a rel matching the POST type.
FindPreviousLink = find_previous_link(self)
GetAclLink = get_acl_link(self)
Searches for a link or feed_link (if present) with the rel for ACL.
GetFeedLink = get_feed_link(self)
GetHtmlLink = get_html_link(self)
GetPostLink = get_post_link(self)
GetPreviousLink = get_previous_link(self)
find_acl_link(self)
find_feed_link(self)
find_html_link(self)
Finds the first link with rel of alternate and type of text/html.
find_post_link(self)
Get the URL to which new entries should be POSTed.
 
The POST target URL is used to insert new entries.
 
Returns:
  A str for the URL in the link with a rel matching the POST type.
find_previous_link(self)
get_acl_link(self)
Searches for a link or feed_link (if present) with the rel for ACL.
get_feed_link(self)
get_html_link(self)
get_post_link(self)
get_previous_link(self)

Methods inherited from atom.data.LinkFinder:
FindAlternateLink = find_alternate_link(self)
FindEditLink = find_edit_link(self)
FindEditMediaLink = find_edit_media_link(self)
FindLicenseLink = find_license_link(self)
FindNextLink = find_next_link(self)
FindSelfLink = find_self_link(self)
Find the first link with rel set to 'self'
 
Returns:
  A str containing the link's href or None if none of the links had rel
  equal to 'self'
FindUrl = find_url(self, rel)
Returns the URL (as a string) in a link with the desired rel value.
GetAlternateLink = get_alternate_link(self)
GetEditLink = get_edit_link(self)
GetEditMediaLink = get_edit_media_link(self)
GetLicenseLink = get_license_link(self)
GetLink = get_link(self, rel)
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.
GetNextLink = get_next_link(self)
GetSelfLink = get_self_link(self)
find_alternate_link(self)
find_edit_link(self)
find_edit_media_link(self)
find_license_link(self)
find_next_link(self)
find_self_link(self)
Find the first link with rel set to 'self'
 
Returns:
  A str containing the link's href or None if none of the links had rel
  equal to 'self'
find_url(self, rel)
Returns the URL (as a string) in a link with the desired rel value.
get_alternate_link(self)
get_edit_link(self)
get_edit_media_link(self)
get_license_link(self)
get_link(self, rel)
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_next_link(self)
get_self_link(self)

 
class CommentFeed(gdata.data.GDFeed)
    
Method resolution order:
CommentFeed
gdata.data.GDFeed
atom.data.Feed
atom.data.Source
atom.data.FeedEntryParent
atom.core.XmlElement
gdata.data.LinkFinder
atom.data.LinkFinder
__builtin__.object

Data and other attributes defined here:
entry = [<class 'gdata.blogger.data.Comment'>]

Methods inherited from gdata.data.GDFeed:
GetId = get_id(self)
get_generator(self)
get_id(self)

Data and other attributes inherited from gdata.data.GDFeed:
etag = '{http://schemas.google.com/g/2005}etag'
items_per_page = <class 'gdata.data.ItemsPerPage'>
The opensearch:itemsPerPage element in GData feed.
start_index = <class 'gdata.data.StartIndex'>
The opensearch:startIndex element in GData feed.
total_results = <class 'gdata.data.TotalResults'>
opensearch:TotalResults for a GData feed.

Data and other attributes inherited from atom.data.Source:
generator = <class 'atom.data.Generator'>
The atom:generator element.
icon = <class 'atom.data.Icon'>
The atom:icon element.
logo = <class 'atom.data.Logo'>
The atom:logo element.
subtitle = <class 'atom.data.Subtitle'>
The atom:subtitle element.

Methods inherited from atom.data.FeedEntryParent:
__init__(self, atom_id=None, text=None, *args, **kwargs)

Data and other attributes inherited from atom.data.FeedEntryParent:
author = [<class 'atom.data.Author'>]
category = [<class 'atom.data.Category'>]
contributor = [<class 'atom.data.Contributor'>]
id = <class 'atom.data.Id'>
The atom:id element.
link = [<class 'atom.data.Link'>]
rights = <class 'atom.data.Rights'>
The atom:rights element.
title = <class 'atom.data.Title'>
The atom:title element.
updated = <class 'atom.data.Updated'>
The atom:updated element.

Methods inherited from atom.core.XmlElement:
FindChildren = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
FindExtensions = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
GetAttributes = get_attributes(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching attributes.
 
Returns:
  A list of XmlAttribute objects for the matching attributes.
GetElements = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
ToString = to_string(self, version=1, encoding=None, pretty_print=None)
Converts this object to XML.
__str__(self)
get_attributes(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching attributes.
 
Returns:
  A list of XmlAttribute objects for the matching attributes.
get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
to_string(self, version=1, encoding=None, pretty_print=None)
Converts this object to XML.

Data descriptors inherited from atom.core.XmlElement:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)
attributes
children
extension_attributes
extension_elements
namespace
tag

Data and other attributes inherited from atom.core.XmlElement:
text = None

Methods inherited from gdata.data.LinkFinder:
FindAclLink = find_acl_link(self)
FindFeedLink = find_feed_link(self)
FindHtmlLink = find_html_link(self)
Finds the first link with rel of alternate and type of text/html.
FindPostLink = find_post_link(self)
Get the URL to which new entries should be POSTed.
 
The POST target URL is used to insert new entries.
 
Returns:
  A str for the URL in the link with a rel matching the POST type.
FindPreviousLink = find_previous_link(self)
GetAclLink = get_acl_link(self)
Searches for a link or feed_link (if present) with the rel for ACL.
GetFeedLink = get_feed_link(self)
GetHtmlLink = get_html_link(self)
GetPostLink = get_post_link(self)
GetPreviousLink = get_previous_link(self)
find_acl_link(self)
find_feed_link(self)
find_html_link(self)
Finds the first link with rel of alternate and type of text/html.
find_post_link(self)
Get the URL to which new entries should be POSTed.
 
The POST target URL is used to insert new entries.
 
Returns:
  A str for the URL in the link with a rel matching the POST type.
find_previous_link(self)
get_acl_link(self)
Searches for a link or feed_link (if present) with the rel for ACL.
get_feed_link(self)
get_html_link(self)
get_post_link(self)
get_previous_link(self)

Methods inherited from atom.data.LinkFinder:
FindAlternateLink = find_alternate_link(self)
FindEditLink = find_edit_link(self)
FindEditMediaLink = find_edit_media_link(self)
FindLicenseLink = find_license_link(self)
FindNextLink = find_next_link(self)
FindSelfLink = find_self_link(self)
Find the first link with rel set to 'self'
 
Returns:
  A str containing the link's href or None if none of the links had rel
  equal to 'self'
FindUrl = find_url(self, rel)
Returns the URL (as a string) in a link with the desired rel value.
GetAlternateLink = get_alternate_link(self)
GetEditLink = get_edit_link(self)
GetEditMediaLink = get_edit_media_link(self)
GetLicenseLink = get_license_link(self)
GetLink = get_link(self, rel)
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.
GetNextLink = get_next_link(self)
GetSelfLink = get_self_link(self)
find_alternate_link(self)
find_edit_link(self)
find_edit_media_link(self)
find_license_link(self)
find_next_link(self)
find_self_link(self)
Find the first link with rel set to 'self'
 
Returns:
  A str containing the link's href or None if none of the links had rel
  equal to 'self'
find_url(self, rel)
Returns the URL (as a string) in a link with the desired rel value.
get_alternate_link(self)
get_edit_link(self)
get_edit_media_link(self)
get_license_link(self)
get_link(self, rel)
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_next_link(self)
get_self_link(self)

 
class InReplyTo(atom.core.XmlElement)
    
Method resolution order:
InReplyTo
atom.core.XmlElement
__builtin__.object

Data and other attributes defined here:
href = 'href'
ref = 'ref'
source = 'source'
type = 'type'

Methods inherited from atom.core.XmlElement:
FindChildren = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
FindExtensions = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
GetAttributes = get_attributes(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching attributes.
 
Returns:
  A list of XmlAttribute objects for the matching attributes.
GetElements = get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
ToString = to_string(self, version=1, encoding=None, pretty_print=None)
Converts this object to XML.
__init__(self, text=None, *args, **kwargs)
__str__(self)
get_attributes(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching attributes.
 
Returns:
  A list of XmlAttribute objects for the matching attributes.
get_elements(self, tag=None, namespace=None, version=1)
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.
 
Args:
  tag: str
  namespace: str
  version: int Specifies the version of the XML rules to be used when
           searching for matching elements.
 
Returns:
  A list of the matching XmlElements.
to_string(self, version=1, encoding=None, pretty_print=None)
Converts this object to XML.

Data descriptors inherited from atom.core.XmlElement:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)
attributes
children
extension_attributes
extension_elements
namespace
tag

Data and other attributes inherited from atom.core.XmlElement:
text = None

 
Data
        BLOG_ID2_PATTERN = <_sre.SRE_Pattern object>
BLOG_ID_PATTERN = <_sre.SRE_Pattern object>
BLOG_NAME_PATTERN = <_sre.SRE_Pattern object>
COMMENT_ID_PATTERN = <_sre.SRE_Pattern object>
LABEL_SCHEME = 'http://www.blogger.com/atom/ns#'
PAGE_ID_PATTERN = <_sre.SRE_Pattern object>
POST_ID_PATTERN = <_sre.SRE_Pattern object>
THR_TEMPLATE = '{http://purl.org/syndication/thread/1.0}%s'
__author__ = 'j.s@google.com (Jeff Scudder)'

 
Author
        j.s@google.com (Jeff Scudder)