lemon24

Results 63 comments of lemon24

Hello, and thanks for reaching out! It's nice to hear from someone that actually has this use case :) I thought about it a bit, and I think it can...

Hi, thanks for reaching out! `source` doesn't seems to be stored at the moment; *reader* started out using a subset of the stuff feedparser exposes, and I kept adding more...

Some notes on implementing this. The [RSS `source`](https://validator.w3.org/feed/docs/rss2.html#ltsourcegtSubelementOfLtitemgt) just points to the original feed: ```xml Some Feed ``` The [Atom `source`](https://validator.w3.org/feed/docs/atom.html#optionalEntryElements) is way more complicated, containing a subset of the...

https://gist.github.com/lemon24/10ae478fafb8fc1cb091f04e0ceec03f Done so far: * got rid of memory issues * fixed the summary/content order bug Using an alternate SAX parser is just a matter of exposing the global list...

The plan: * fork feedparser (temporarily), and incorporate all 3 changes * cut pull requests for the changes, and a meta-issue explaining them (the encoding stuff, especially) * vendor the...

feedparser meta-issue: https://github.com/kurtmckee/feedparser/issues/296

feedparser PR for reducing memory usage: https://github.com/kurtmckee/feedparser/pull/302

maxrss for update_feeds() (1 worker), before/after ea64a42, on my database (~160 feeds), with all the feeds stale: ```pycon >>> def fn(before, after, base=0): ... return (1 - (after-base) / (before-base))...

Hello, thank you for opening this! :) First, to ask some clarification questions (they overlap somewhat, but I'm trying to cover all the angles here). 1. What problem are you...

You're welcome! > to be able to use Atom/Rss/Json feeds, I'll need to use the magic library directly on the content to determine the Mime Since you *do* have both...