Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

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 = loader.load_data([
    "https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml",
    "https://roelofjanelsinga.com/atom.xml"
])