Metadata-Version: 2.4
Name: llama-index-readers-feedly-rss
Version: 0.4.0
Summary: llama-index readers feedly_rss integration
Author-email: Your Name <you@example.com>
Maintainer: kychanbp
License-Expression: MIT
License-File: LICENSE
Keywords: feedly,rss
Requires-Python: <4.0,>=3.9
Requires-Dist: feedly-client<0.27,>=0.26
Requires-Dist: llama-index-core<0.14,>=0.13.0
Description-Content-Type: text/markdown

# Feedly Loader

```bash
pip install llama-index-readers-feedly-rss
```

This loader fetches the entries from a list of RSS feeds subscribed in [Feedly](https://feedly.com). You must initialize the loader with your [Feedly API token](https://developer.feedly.com), and then pass the category name which you want to extract.

## Usage

```python
from llama_index.readers.feedly_rss import FeedlyRssReader

loader = feedlyRssReader(bearer_token="[YOUR_TOKEN]")
documents = loader.load_data(category_name="news", max_count=100)
```

## Dependencies

[feedly-client](https://pypi.org/project/feedly-client/)
