BSHTMLLoader
This notebook provides a quick overview for getting started with BeautifulSoup4 document loader. For detailed documentation of all __ModuleName__Loader features and configurations head to the API reference.
Overview
Integration details
Class | Package | Local | Serializable | JS support |
---|---|---|---|---|
BSHTMLLoader | langchain_community | ✅ | ❌ | ❌ |
Loader features
Source | Document Lazy Loading | Native Async Support |
---|---|---|
BSHTMLLoader | ✅ | ❌ |
Setup
To access BSHTMLLoader document loader you'll need to install the langchain-community
integration package and the bs4
python package.
Credentials
No credentials are needed to use the BSHTMLLoader
class.
If you want to get automated best in-class tracing of your model calls you can also set your LangSmith API key by uncommenting below:
# os.environ["LANGSMITH_API_KEY"] = getpass.getpass("Enter your LangSmith API key: ")
# os.environ["LANGSMITH_TRACING"] = "true"
Installation
Install langchain_community and bs4.
%pip install -qU langchain_community bs4