2023-04-15 12:51:07 -07:00
..
2023-04-02 11:37:49 -07:00
2023-04-15 12:51:07 -07:00
2023-04-02 11:37:49 -07:00
2023-04-02 11:37:49 -07:00

Feedly Loader

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

from llama_index import download_loader
feedlyRssReader = download_loader("FeedlyRssReader")

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

Dependencies

feedly-client