Registry / data / fastfeedparser

fastfeedparser

JSON →
library0.6.0pypypi✓ verified 89d ago

High performance RSS, Atom, JSON and RDF feed parser in Python. Current version 0.6.0, actively developed on GitHub by kagisearch.

pip install fastfeedparser
INSTALL
IMPORT
SIG · FASTFEEDPARSER
F
fastfeedparser
datapythonv0.6.0
Install
2.2s avg
Import
180ms
Disk
29MB
Pass rate
10/ 10
Env Coverage10 / 10
glibc
3.9–3.13
musl
3.9–3.13
Install & Compatibility
Where this runs
tested against v0.6.0 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.186s · 30.7MB
glibc
py 3.10–3.95 runs
installs and imports cleanly · install 2.2s · import 0.174s · 31MB
29MB installed
● package 29MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

parse
✓ from fastfeedparser import parse
Main parsing function, not a class.

Minimal example to parse a feed and print title, link, and entries.

from fastfeedparser import parse feed_url = 'https://example.com/feed.xml' result = parse(feed_url) print(result.title, result.link) for entry in result.entries: print(entry.title, entry.link, entry.published)
Debug
Known issues
gotchaThe `parse` function returns a `Feed` object, not a dict. Access attributes directly (e.g., `result.title`) rather than using `result['title']`.
fix
Use dot notation: `result.title`, `entry.link`, etc.
affects: all
deprecatedThe `raw` parameter in `parse` is deprecated and will be removed in a future version.
fix
Remove the `raw` parameter; the library now always returns parsed objects.
affects: >=0.5.0
gotchaIf the feed URL returns non-UTF-8 content, parsing may fail. Ensure the server returns UTF-8 or handle encoding manually.
fix
Use requests to fetch content and pass bytes to `parse` with explicit encoding.
affects: all
Errors
Common errors & fixes
AttributeError: 'NoneType' object has no attribute 'title'
The returned object is None (parsing failed) but code tries to access `.title`.
fix
Check if the result is None: `if result is not None: print(result.title)`
ImportError: cannot import name 'FastFeedParser' from 'fastfeedparser'
Incorrect import; there is no class with that name.
fix
Use `from fastfeedparser import parse`.
TypeError: parse() got an unexpected keyword argument 'raw'
Using deprecated `raw` parameter removed in newer versions.
fix
Remove `raw=True` from the parse call.
Upgrade
Version history
0.6.0latest on PyPI · released Apr 6, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
10 hits · last 30 days
node
10
Resources
fastfeedparser — pip install fastfeedparser · libregistry