File size: 508 Bytes
70b87af
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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.

```python
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",
    ]
)
```