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