Project Gutenberg는 무료 전자책을 제공하는 온라인 도서관입니다.
이 노트북은 Gutenberg 전자책 링크를 다운스트림에서 사용할 수 있는 문서 형식으로 로드하는 방법을 다룹니다.
from langchain_community.document_loaders import GutenbergLoader
loader = GutenbergLoader("https://www.gutenberg.org/cache/epub/69972/pg69972.txt")
data = loader.load()
data[0].page_content[:300]
'The Project Gutenberg eBook of The changed brides, by Emma Dorothy\r\n\n\nEliza Nevitte Southworth\r\n\n\n\r\n\n\nThis eBook is for the use of anyone anywhere in the United States and\r\n\n\nmost other parts of the world at no cost and with almost no restrictions\r\n\n\nwhatsoever. You may copy it, give it away or re-u'
data[0].metadata
{'source': 'https://www.gutenberg.org/cache/epub/69972/pg69972.txt'}

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