Tool

Fetch and index documentation from MangApps Guides

MangoppsGuides Loader fetches text content from Mangopps Guides installations into LlamaIndex with configurable limits.

Works with mangoapps

73
Spark score
out of 100
Updated 2 days ago
Version 0.14.23

Add to Favorites

Why it matters

Load documentation content from MangApps Guides installations into LlamaIndex for retrieval-augmented generation and knowledge base applications.

Outcomes

What it gets done

01

Connect to MangApps Guides domain URL

02

Crawl guide pages up to specified limit

03

Extract text content from fetched guides

04

Load documents into LlamaIndex for indexing

Install

Add it to your toolbox

Run in your project directory:

curl -fsSL https://spark.entire.vc/get/li-reader-readers-mangoapps-guides | bash

Overview

MangoppsGuides Loader

MangoppsGuides Loader is a data reader that fetches text content from Mangopps Guides installations and loads it into LlamaIndex. It crawls guide pages from a specified base URL, extracting text content with a configurable limit on the number of links to process, and returns LlamaIndex document objects. Use this loader when you need to fetch text content from a Mangopps Guides installation and load it into LlamaIndex.

What it does

MangoppsGuides Loader is a data reader that fetches text content from Mangopps Guides installations and loads it into LlamaIndex. It crawls guide pages from a specified base URL and extracts text content, with a configurable limit on the maximum number of links to process.

When to use - and when NOT to

Use this loader when you need to fetch text content from a Mangopps Guides installation and load it into LlamaIndex.

Do NOT use this loader if you need to fetch content from other documentation platforms.

Inputs and outputs

You provide two inputs: the domain_url parameter specifying the base URL of your Mangopps Guides installation (for example, https://guides.mangoapps.com) and the limit parameter defining the maximum number of links to crawl.

You receive a collection of LlamaIndex document objects containing the extracted text content from the crawled guide pages.

Integrations

This loader is designed to be used as a way to load data into LlamaIndex.

Who it's for

This loader is for developers building LLM applications that need to load content from Mangopps Guides installations.

Installation and usage

Install the package:

pip install llama-index-readers-mangoapps-guides

Load data from your Mangopps Guides installation:

from llama_index.readers.mangoapps_guides import MangoppsGuidesReader

loader = MangoppsGuidesReader()
documents = loader.load_data(
    domain_url="https://guides.mangoapps.com", limit=1
)
Source README

MangoppsGuides Loader

pip install llama-index-readers-mangoapps-guides

This loader fetches the text from Mangopps Guides.

Usage

To use this loader, you need to pass base url of the MangoppsGuides installation (e.g. https://guides.mangoapps.com/) and the limit , i.e. max number of links it should crawl

from llama_index.readers.mangoapps_guides import MangoppsGuidesReader

loader = MangoppsGuidesReader()
documents = loader.load_data(
    domain_url="https://guides.mangoapps.com", limit=1
)

This loader is designed to be used as a way to load data into LlamaIndex.

FAQ

Common questions

Discussion

Questions & comments · 0

Sign In Sign in to leave a comment.