def author_name(self): """ Returns the feed's author's name as a normal Python string. """ return user_name(_siteinfo().owner)
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)