Back to Llama Index

Feedly Loader

llama-index-integrations/readers/llama-index-readers-feedly-rss/README.md

0.14.21603 B
Original Source

Feedly Loader

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

This loader fetches the entries from a list of RSS feeds subscribed in Feedly. You must initialize the loader with your Feedly API token, 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