Read the Docs는 오픈 소스 무료 소프트웨어 문서 호스팅 플랫폼입니다. Sphinx 문서 생성기로 작성된 문서를 생성합니다.
이 노트북은 Read-The-Docs 빌드의 일부로 생성된 HTML에서 콘텐츠를 로드하는 방법을 다룹니다. 실제 사용 예시는 여기를 참조하세요. 이는 HTML이 이미 폴더에 스크랩되었다고 가정합니다. 다음 명령의 주석을 해제하고 실행하여 이 작업을 수행할 수 있습니다.
pip install -qU  beautifulsoup4
#!wget -r -A.html -P rtdocs https://python.langchain.com/en/latest/
from langchain_community.document_loaders import ReadTheDocsLoader
loader = ReadTheDocsLoader("rtdocs")
docs = loader.load()

Connect these docs programmatically to Claude, VSCode, and more via MCP for real-time answers.
I