You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feedparser has some issues I would like to solve for reader:
it uses too much memory
this comment shows it's possible to do similar work with about 1/3 of what feedparser uses
this gist shows part of the issue comes from the entire feed being read into memory and converted back and forth a few times to detect the encoding and update the XML declaration
feedparser has some issues I would like to solve for reader:
Can we work around them by re-implementing parse()?