Spaces:
Sleeping
Sleeping
A newer version of the Gradio SDK is available:
5.33.0
RSS Loader
This loader allows fetching text from an RSS feed. It uses the feedparser
module
to fetch the feed and optionally the html2text
module to sanitize it.
Usage
To use this loader, pass in an array of URL's.
from llama_index import download_loader
RssReader = download_loader("RssReader")
reader = RssReader()
documents = reader.load_data(
[
"https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml",
"https://roelofjanelsinga.com/atom.xml",
]
)