[...]
> 3) Technically the structure of the entry is invalid because author is
> repeated and that is not allowed. Because of this python feedparser
> can only get the first author. I can find a workaround to this by
> writing my own parser but perhaps you have a better solution.
>
> Massimo
the arXiv feed is correct. use feedparser version 5.0.1. feedparser v4
does not handle multiple authors, v5 does, see recent post.
with v5 you can do e.g.
print 'Authors: %s' % ', '.join(author.name for author in entry.authors)
Cheers
T.