in readability/htmls.py [0:0]
def get_author(doc):
author = doc.find(".//meta[@name='author']")
if author is None or 'content' not in author.keys() or \
len(author.get('content')) == 0:
return "[no-author]"
return author.get('content')