π¦ ClawHub
RSS Aggregator
by @fuzzyb33s
Monitor, filter, and summarize RSS/Atom feeds on a schedule. Use when: (1) tracking industry news or competitor blogs, (2) setting up keyword alerts across m...
βοΈ Configuration
Requires the feedparser Python package:
pip install feedparser
π Tips & Best Practices
| Symptom | Cause | Fix |
|---------|-------|-----|
| Empty entries list | Feed may require auth or be XML-only | Try curl to inspect raw feed |
| decode error in feed | Malformed encoding | Add , encoding='utf-8' to feedparser.parse() |
| Unicode errors | Non-UTF8 characters | Add , response_encoding='utf-8' to parse call |
| Old entries only | max_age_days too restrictive | Increase or remove the filter |
| Missing summaries | Site blocks feed scrapers | Use e.get('content', [{}])[0].get('value', '') for full content |
TERMINAL
clawhub install fuzzy-rss-aggregator