{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Ursula Franklin" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "![](https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Ursula_Franklin_at_book_launch_crop.jpg/220px-Ursula_Franklin_at_book_launch_crop.jpg)\n", "\n", "You can find the recordings of her Massey lectures on [archive.org](https://archive.org/details/the-real-world-of-technology). Note the URL: \n", "\n", "\n", "\n", "You can also access the API of archive.org to get information in a [structured format](https://archive.org/help/json.php) that you can use in a script...\n", "\n", " A particular file can always be downloaded from:\n", ">```\n", "> https://archive.org/download//\n", ">```" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# this is something specific to notebooks...\n", "from IPython.display import HTML, display" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "for filename, d in feed['files'].items():\n", " if d['format'] == \"VBR MP3\":\n", " display(HTML(f'

{d[\"title\"]}

'))\n", " display(HTML(f''))" ] } ], "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.7.3" } }, "nbformat": 4, "nbformat_minor": 4 }