{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Gathering web pages\n", "\n", "This utility script is for gathering the text of a collection of web sites. It assumes you have a CSV with a list of URLs and it adds the results of the gathering back into the CSV." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Opening the CSV\n", "\n", "This opens a CSV and extracts the URLs putting them into a list. Alternatively you can use a " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Getting the HTML\n", "\n", "This function gets the HTML given a URL." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Cleaning the HTML\n", "\n", "This function cleans the HTML " ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "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.5.1" } }, "nbformat": 4, "nbformat_minor": 0 }