Example #1
0
 def author_name(self):
     """
     Returns the feed's author's name as a normal Python string.
     """
     return user_name(_siteinfo().owner)
Example #2
0
 def item_author_name(self, item):
     """
     Takes an item, as returned by items(), and returns the item's
     author's name as a normal Python string.
     """
     return user_name(item.author)