anarcat

Results 540 comments of anarcat

makes sense. so maybe a `--dirstat` option? unless you can think of more such hooks that would be implemented?

indeed. maybe we shouldn't skip save ever? or should we have a `--force` option?

agreed. i am not even sure we need an option at all after all.

but that would prioritize `published_parsed` over `updated_parsed` which is not what i want. it would also still yield warnings if `published_parsed` is missing or empty.

that is the question. the deprecation warning here should make it clearer what the proper way out is. right now it's ambiguous.

On 2019-03-05 16:56:18, Kurt McKee wrote: > Quick question: do you have experience with other libraries besides dateparser? Yes. I wrote a tool called undertime: https://gitlab.com/anarcat/undertime ... that originally used...

dateutil is less flexible than dateparser, but might be enough to handle the problematic case. Did anyone check the actual bug reports to see if they are fixed by the...

it should: 1. not crash 2. make an educated guess at a UID I do this in feed2exec: ```python if not item.get('id'): item['id'] = item.get('title') ``` it's just a dumb...

yep, i don't mind rolling my own heuristics here... i guess what i need here is for feedparser to ... er... not crash. :)

i still get the same error than originally reported. should i send a PR to get the failing unit test in place? to reproduce, you simply need to do this:...