{ "cells": [ { "cell_type": "markdown", "id": "bda1f3f5", "metadata": {}, "source": [ "# Gutenberg\n", "\n", "This covers how to load links to Gutenberg e-books into a document format that we can use downstream." ] }, { "cell_type": "code", "execution_count": 1, "id": "9bfd5e46", "metadata": {}, "outputs": [], "source": [ "from langchain.document_loaders import GutenbergLoader" ] }, { "cell_type": "code", "execution_count": 6, "id": "700e4ef2", "metadata": {}, "outputs": [], "source": [ "loader = GutenbergLoader('https://www.gutenberg.org/cache/epub/69972/pg69972.txt')" ] }, { "cell_type": "code", "execution_count": 9, "id": "b6f28930", "metadata": {}, "outputs": [], "source": [ "data = loader.load()" ] }, { "cell_type": "code", "execution_count": null, "id": "7d436441", "metadata": {}, "outputs": [], "source": [ "data" ] }, { "cell_type": "code", "execution_count": null, "id": "3b74d755", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.1" } }, "nbformat": 4, "nbformat_minor": 5 }