IMSDB
This example goes over how to load data from the internet movie script database website, using Cheerio. One document will be created for each page.
Setup
- npm
- Yarn
npm install cheerio
yarn add cheerio
Usage
import { IMSDBLoader } from "langchain/document_loaders";
const loader = new IMSDBLoader("https://imsdb.com/scripts/BlacKkKlansman.html");
const docs = await loader.load();