Skip to content

Instantly share code, notes, and snippets.

@jboynyc
Created March 5, 2020 20:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jboynyc/5891f51e9856bed457a043e248e75d01 to your computer and use it in GitHub Desktop.
Save jboynyc/5891f51e9856bed457a043e248e75d01 to your computer and use it in GitHub Desktop.
sci-fi influences
Display the source blob
Display the rendered blob
Raw
{
"metadata": {
"name": "",
"signature": "sha256:912919d66ba279a77fdac76cdc5394daab106a74fe40a80735ba1e02c937dca4"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "code",
"collapsed": false,
"input": [
"%pylab inline"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Populating the interactive namespace from numpy and matplotlib\n"
]
}
],
"prompt_number": 1
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import json\n",
"import requests\n",
"import networkx as nx\n",
"from urllib.parse import unquote\n",
"from time import sleep\n",
"from bs4 import BeautifulSoup as bs"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 2
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"g = nx.DiGraph()"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 3
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# a little helper function for nx\n",
"def mk_edge(graph, orig, dest, weight=1):\n",
" if orig == dest or graph.has_edge(orig, dest):\n",
" pass\n",
" else: \n",
" graph.add_edge(orig, dest, weight=weight)"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 4
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"authors = []\n",
"# get initial list of authors from Wikipedia\n",
"r = requests.get('https://en.wikipedia.org/wiki/Category:Science_Fiction_Hall_of_Fame_inductees')\n",
"sfhf = bs(r.text)\n",
"for i in sfhf.select('table ul li a'):\n",
" loc = i['href']\n",
" if loc != '/wiki/EMP_Museum':\n",
" authors.append(loc.split('/')[-1].replace('_', ' '))"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 5
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"def get_infl(author):\n",
" a = author.replace(' ', '_')\n",
" json_uri = 'http://dbpedia.org/data/{}.json'.format(a)\n",
" resource_uri = 'http://dbpedia.org/resource/{}'.format(a)\n",
" fix_string = lambda s: unquote(s.replace('_', ' ').split('/')[-1])\n",
" try:\n",
" j = json.loads(requests.get(json_uri).text)\n",
" except:\n",
" return (False, False)\n",
" if resource_uri in j:\n",
" res = j[resource_uri]\n",
" else:\n",
" return (False, False)\n",
" if 'http://dbpedia.org/ontology/wikiPageRedirects' in res:\n",
" redir = res['http://dbpedia.org/ontology/wikiPageRedirects']\n",
" if not isinstance(redir, list):\n",
" loc = redir['value']\n",
" else:\n",
" loc = redir[0]['value']\n",
" return get_infl(fix_string(loc))\n",
" if 'http://dbpedia.org/ontology/influenced' in res:\n",
" d = [fix_string(i['value']) for i in res['http://dbpedia.org/ontology/influenced']]\n",
" else:\n",
" d = None\n",
" if 'http://dbpedia.org/ontology/influencedBy' in res:\n",
" s = [fix_string(i['value']) for i in res['http://dbpedia.org/ontology/influencedBy']]\n",
" else:\n",
" s = None\n",
" return (s, d)"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 6
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"def mk_links(graph, author):\n",
" i_s, i_d = get_infl(author)\n",
" print(author, i_s, i_d)\n",
" if i_s:\n",
" for i in i_s:\n",
" mk_edge(graph, i, author)\n",
" if i_d:\n",
" for i in i_d:\n",
" mk_edge(graph, author, i)"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 7
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"seen = []\n",
"degrees = 3\n",
"for _ in range(degrees):\n",
" if len(g.nodes()):\n",
" notseen = [n for n in g.nodes() if n not in seen]\n",
" else:\n",
" notseen = authors\n",
" for author in notseen:\n",
" mk_links(g, author)\n",
" sleep(0.33)\n",
" seen.append(author)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Brian Aldiss ['Olaf Stapledon', 'H. G. Wells'] ['Iain Banks']\n",
"Poul Anderson"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Greg Bear', 'Gregory Benford', 'Michael Moorcock']\n",
"Isaac Asimov"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Betty Ballantine"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Ian Ballantine"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Alfred Bester"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Bruce Sterling', 'William Gibson']\n",
"James Blish"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Chesley Bonestell"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"David Bowie"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Leigh Brackett"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Edgar Rice Burroughs'] ['George Lucas', 'Michael Moorcock', 'Ray Bradbury', 'Edmond Hamilton']\n",
"Ray Bradbury"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Edgar Rice Burroughs"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Camille Flammarion', 'Edwin Lester Arnold', 'Arthur Conan Doyle', 'H. Rider Haggard', 'Rudyard Kipling', 'H. G. Wells', 'Jules Verne'] ['John Norman', 'James Cameron', 'A. Merritt', 'Leigh Brackett', 'Carl Sagan', 'Philip Jos\u00e9 Farmer', 'Arthur C. Clarke', 'Lin Carter', 'Otis Adelbert Kline', 'Robert E. Howard', 'Michael Moorcock', 'Robert A. Heinlein', 'Ray Bradbury', 'Edmond Hamilton']\n",
"Octavia E. Butler"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Joanna Russ', 'Toni Morrison', 'Samuel R. Delany', 'Harlan Ellison'] ['Tananarive Due']\n",
"James Cameron"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"John W. Campbell"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Isaac Asimov']\n",
"Arthur C. Clarke"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['H. G. Wells', 'Jules Verne', 'Olaf Stapledon', 'Edward Plunkett, 18th Baron of Dunsany'] ['Iain Banks', 'Stephen Baxter']\n",
"Hal Clement"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Samuel R. Delany"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Virginia Woolf', 'Plato', 'Gustave Flaubert', 'Speedy Keen', 'Jacques Lacan', 'Theodore Sturgeon', 'Roger Zelazny', 'Arthur Rimbaud', 'James Joyce', 'Jacques Derrida'] ['Neil Gaiman', 'Jo Walton', 'Junot D\u00edaz', 'William Gibson', 'Bruce Sterling']\n",
"Vincent Di Fate"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Philip K. Dick"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Jorge Luis Borges', 'Immanuel Kant', 'Jack Spicer', 'A. E. van Vogt', 'Nathanael West', 'James Joyce', 'Marcel Proust', 'Gustave Flaubert', 'H. G. Wells', 'Fyodor Dostoyevsky', 'Carl Jung', 'Honor\u00e9 de Balzac', 'Martin Heidegger', 'Samuel Beckett', 'John Thomas Sladek'] ['Charlie Kaufman', 'Richard Linklater', 'Jonathan Lethem', 'The Wachowskis', 'Satoshi Kon', 'Ursula K. Le Guin', 'Neal Stephenson', 'El-P', 'Roberto Bola\u00f1o', 'Tim Powers', 'Jean Baudrillard', 'Joss Whedon', 'Rodrigo Fres\u00e1n', 'Grant Morrison', 'Terry Gilliam', 'Fredric Jameson', 'David Cronenberg', 'Haruki Murakami', 'Slavoj \u017di\u017eek']\n",
"Gordon R. Dickson"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Gardner Dozois"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Harlan Ellison"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Ed Emshwiller"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Edward L. Ferman"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Virgil Finlay"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Frank Frazetta"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Roy Krenkel', 'Frank Schoonover', 'Howard Pyle', 'J. Allen St. John'] ['Yusuke Nakano', 'Marc Silvestri', 'Nox Arcana', 'Shelby Robertson']\n",
"Frank Kelly Freas"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Hugo Gernsback"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"William Gibson"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['William S. Burroughs', 'Samuel R. Delany', 'Jorge Luis Borges', 'Manny Farber', 'Howard Hawks', 'Thomas Pynchon', 'Alfred Bester', 'Thomas M. Disch', 'Joanna Russ', 'Joseph Cornell', 'Dashiell Hammett', 'Ursula K. Le Guin', 'Gakury\u016b Ishii', 'Jayne Anne Phillips', 'Lou Reed', 'Robert Stone', 'David Cronenberg'] ['John MacLachlan Gray', 'Richard K. Morgan', 'Charles Stross', 'Lewis Call', 'Linda Nagata', 'Cory Doctorow', 'Rian Johnson', 'Neal Stephenson', 'Scott Westerfeld']\n",
"H. R. Giger"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Salvador Dal\u00ed', 'Ernst Fuchs (artist)', 'Alfred Kubin'] ['Jhonen Vasquez', 'Yoshihiro Togashi']\n",
"Jean Giraud"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Joe Haldeman"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Harry Harrison (writer)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Ray Harryhausen"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Robert A. Heinlein"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['H. G. Wells', 'James Branch Cabell', 'Mark Twain', 'Edgar Rice Burroughs', 'Rudyard Kipling'] ['Spider Robinson', 'Dean Koontz', 'Larry Niven', 'John Varley (author)', 'George R. R. Martin', 'Allen Steele', 'Jerry Pournelle', 'David D. Friedman', 'Neil Gaiman', 'Iain Banks', 'Tom Clancy']\n",
"Frank Herbert"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Jack Vance', 'Edgar Rice Burroughs', 'H. G. Wells', 'Jules Verne', 'Poul Anderson', 'Robert A. Heinlein'] ['Chris Wooding']\n",
"Damon Knight"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Stanley Kubrick"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Ursula K. Le Guin"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Fritz Leiber"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"George Lucas"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Richard Matheson"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Chris Carter (screenwriter)', 'Joe Hill (writer)', 'Stephen King', 'Richard Christian Matheson']\n",
"Anne McCaffrey"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['David Weber']\n",
"Judith Merril"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Karl Schroeder']\n",
"A. Merritt"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Gertrude Barrows Bennett', 'H. Rider Haggard'] ['Vladimir Colin', 'Jack Williamson', 'H. P. Lovecraft', 'Richard Sharpe Shaver']\n",
"Hayao Miyazaki"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Michael Moorcock"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Poul Anderson', 'Joseph Conrad', 'T. H. White', 'Edward Plunkett, 18th Baron of Dunsany', 'Leigh Brackett', 'Robert E. Howard', 'William S. Burroughs', 'Edgar Rice Burroughs', 'P. G. Wodehouse', 'J. G. Ballard', 'Fritz Leiber', 'Mervyn Peake'] ['Jess Nevins', 'Hiroyuki Morioka', 'Richard K. Morgan', 'Alan Moore', 'Colin Greenland', 'Michael Chabon', 'Mike Chinn', 'China Mi\u00e9ville', 'Carter Kaplan', 'David A. Hargrave', 'Neil Gaiman']\n",
"C. L. Moore"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Andre Norton"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Frank R. Paul"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Frederik Pohl"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Richard M. Powers"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Gene Roddenberry"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Joanna Russ"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Eric Frank Russell"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Ridley Scott"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Rod Serling"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Mary Shelley"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Robert Silverberg"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"E. E. Smith"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Steven Spielberg"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Olaf Stapledon"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['William Hope Hodgson', 'Oswald Spengler', 'Karl Marx', 'Arthur Schopenhauer', 'J. B. S. Haldane', 'H. G. Wells', 'Jules Verne', 'Friedrich Nietzsche'] ['Brian Aldiss', 'Doris Lessing', 'Stanis\u0142aw Lem', 'Arthur C. Clarke']\n",
"Theodore Sturgeon"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Kurt Vonnegut', 'Ray Bradbury', 'Samuel R. Delany', 'Harlan Ellison']\n",
"James Tiptree, Jr."
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"J. R. R. Tolkien"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Douglas Trumbull"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Wilson Tucker"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"A. E. van Vogt"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jack Vance"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Roger Zelazny', 'Robin Hobb', 'Ursula K. Le Guin', 'Terry Pratchett', 'Robert Silverberg', 'Gardner Dozois', 'Dean Koontz', 'George R. R. Martin', 'Michael Moorcock', 'Michael Chabon', 'Neil Gaiman', 'Poul Anderson', 'Dan Simmons', 'Kage Baker', 'Terry Dowling', 'Gene Wolfe', 'Jeff VanderMeer', 'Frank Herbert']\n",
"Jules Verne"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Johann David Wyss', 'Alexandre Dumas', 'Daniel Defoe', 'George Sand', 'James Fenimore Cooper', 'Walter Scott', 'Edgar Allan Poe', 'Jacques Arago', 'Victor Hugo'] ['Donald G. Payne', 'Robert H. Goddard', 'Marcel Aym\u00e9', 'Michel Butor', 'Guglielmo Marconi', 'Andreas Embirikos', 'Arthur Conan Doyle', 'Wernher von Braun', 'Claude Roy (poet)', 'Eug\u00e8ne Ionesco', 'Jacques Cousteau', 'Blaise Cendrars', 'Yuri Gagarin', 'Graham Hughes', 'Paul Claudel', 'Simon Lake', 'Jean-Paul Sartre', 'Arthur C. Clarke', 'H. G. Wells', 'William Golding', 'Hermann Oberth', 'Jean Cocteau', '\u00c9douard-Alfred Martel', 'Fran\u00e7ois Mauriac', 'Paschal Grousset', 'Ernest Shackleton', 'Arthur Rimbaud', 'Konstantin Tsiolkovsky', 'Norbert Casteret', 'Ray Bradbury', 'Hubert Lyautey', 'Antoine de Saint-Exup\u00e9ry', 'Hugo Gernsback', 'Richard E. Byrd', 'William Beebe', 'Raymond Roussel', 'J. R. R. Tolkien', 'Margaret Drabble', 'Ren\u00e9 Barjavel', 'Fridtjof Nansen', 'Igor Sikorsky', 'Robert Ballard', 'Roland Barthes', 'Alberto Santos-Dumont', 'Edgar Rice Burroughs', 'Emilio Salgari', 'Steampunk']\n",
"H. G. Wells"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Michael Whelan"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Kate Wilhelm"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jack Williamson"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Stanley G. Weinbaum', 'H. G. Wells', 'E. E. Smith', 'Miles J. Breuer', 'A. Merritt'] ['Frederik Pohl', 'Isaac Asimov', 'Ray Bradbury']\n",
"Connie Willis"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Gene Wolfe"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Geoffrey Chaucer', 'Robert Aickman', 'H. P. Lovecraft', 'Arthur Conan Doyle', 'Jorge Luis Borges', 'Vernor Vinge', 'Charles Dickens', 'R. A. Lafferty', 'Herman Melville', 'George Orwell', 'Vladimir Nabokov', 'Lewis Carroll', 'Edgar Rice Burroughs', 'H. G. Wells', 'James Joyce', 'G. K. Chesterton', 'J. R. R. Tolkien', 'Marcel Proust', 'Jack Vance'] ['Neil Gaiman', 'Michael Swanwick', 'China Mi\u00e9ville']\n",
"Donald A. Wollheim"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Roger Zelazny"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Harlan Ellison', 'George R. R. Martin', 'Jane Lindskold', 'Walter Jon Williams', 'Neil Gaiman', 'Catherynne M. Valente', 'Robert Silverberg', 'Joe Haldeman', 'Steven Erikson', 'Samuel R. Delany', 'Jo Walton', 'David A. Hargrave', 'Steven Brust']\n",
"Robert E. Howard"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Edward Plunkett, 18th Baron of Dunsany', 'Nathaniel Hawthorne', 'Jack London', 'Alexandre Dumas', 'Harold Lamb', 'H. P. Lovecraft', 'Rudyard Kipling', 'Edgar Rice Burroughs', 'H. Rider Haggard', 'Arthur Conan Doyle', 'Thomas Bulfinch', 'Edwin Lester Arnold', 'Rafael Sabatini', 'Talbot Mundy', 'Helena Blavatsky', 'Sax Rohmer', 'G. K. Chesterton', 'Plutarch', 'Clark Ashton Smith'] ['David Drake', 'Fritz Leiber', 'George R. R. Martin', 'C. L. Moore', 'Emil Petaja', 'Poul Anderson', 'Robert Weinberg (author)', 'Leigh Brackett', 'L. Sprague de Camp', 'William King (author)', 'Michael Moorcock', 'Steven Erikson', 'John Jakes', 'S. M. Stirling', 'James Reasoner', 'David Gemmell', 'Matthew Stover', 'Andrew J. Offutt', 'Henry Kuttner', 'Charles R. Saunders', 'Karl Edward Wagner', 'Richard L. Tierney', 'Paul Kearney', 'Ramsey Campbell', 'Lin Carter', 'Brian McNaughton', 'Laurell K. Hamilton', 'Harry Turtledove', 'Dave Sim', 'Richard A. Lupoff']\n",
"Terry Pratchett"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Carl Jung"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Sigmund Freud', 'Pierre Janet', 'Carl Gustav Carus', 'Plato', 'Herbert Silberer', 'Friedrich Nietzsche', 'Eugen Bleuler', 'D. T. Suzuki', 'Confucius', 'Laozi', 'Johann Jakob Bachofen', 'Johann Wolfgang von Goethe', 'Friedrich Wilhelm Joseph Schelling', 'Arthur Schopenhauer', 'Immanuel Kant'] ['Hermann Hesse', 'Erich Neumann (psychologist)', 'Karlfried Graf D\u00fcrckheim', 'Marie-Louise von Franz', 'Camille Paglia', 'Laurens van der Post', 'Isabel Briggs Myers', 'Terence McKenna', 'Gaston Bachelard', 'Peter Birkh\u00e4user', 'Federico Fellini', 'Ursula K. Le Guin', 'Jackson Pollock', 'Joseph Campbell']\n",
"John MacLachlan Gray"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['William Gibson', 'Mike Nichols'] None\n",
"Kage Baker"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Karl Schroeder"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Richard Sharpe Shaver"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"James Branch Cabell"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Joseph Cornell"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Transcendentalism', 'Symbolism (arts)', 'Marie Taglioni', 'G\u00e9rard de Nerval', 'St\u00e9phane Mallarm\u00e9'] ['Marcel Duchamp', 'Jeff Wassmann', 'H. C. Westermann', 'William Gibson']\n",
"Otis Adelbert Kline"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jane Lindskold"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Herman Melville"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Nathaniel Hawthorne', 'William Shakespeare'] ['Jeff Smith (cartoonist)', 'William Faulkner', 'Cormac McCarthy', 'D. H. Lawrence', 'Paul Auster', 'Albert Camus']\n",
"Carl Sagan"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Edgar Allan Poe"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"P. G. Wodehouse"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Eug\u00e8ne Ionesco"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Plato"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Aesop', 'Orphism (religion)', 'Pythagoras', 'Hesiod', 'Protagoras', 'Aristophanes', 'Heraclitus', 'Socrates', 'Parmenides', 'Homer'] ['Western philosophy']\n",
"Robert Ballard"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"John Thomas Sladek"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"David Weber"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" [\"Patrick O'Brian\", 'Roger Zelazny', 'Christopher Anvil', 'Anne McCaffrey', 'Keith Laumer', 'Robert A. Heinlein', 'C. S. Forester', 'H. Beam Piper'] ['Steve White (science fiction)', 'Walter Jon Williams', 'John Ringo', 'Eric Flint']\n",
"Konstantin Tsiolkovsky"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Stanley G. Weinbaum"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Edgar Allan Poe', 'H. G. Wells', 'Jules Verne', 'Edgar Rice Burroughs', 'Mary Shelley'] ['Jack Williamson', 'Stephen King', 'Arthur C. Clarke', 'Richard Matheson', 'Robert A. Heinlein', 'Ray Bradbury', 'Isaac Asimov', 'H. P. Lovecraft']\n",
"Arthur Schopenhauer"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Buddhism'] ['Jorge Luis Borges']\n",
"Jack Spicer"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Gakury\u016b Ishii"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Rian Johnson"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jeff VanderMeer"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Angela Carter', 'Michael Moorcock', 'S. P. Somtow', 'Jorge Luis Borges', 'Raymond Chandler', 'Vladimir Nabokov', 'Mervyn Peake'] ['Jesse Bullington']\n",
"Guglielmo Marconi"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jorge Luis Borges"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"T. H. White"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Thomas Malory', 'L. J. Potts', 'J. R. R. Tolkien'] ['Lloyd Alexander', 'Gregory Maguire', 'Michael Moorcock', 'J. K. Rowling', 'Neil Gaiman', 'Ed McBain']\n",
"Greg Bear"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Poul Anderson'] None\n",
"Joss Whedon"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Claude Roy (poet)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Simon Lake"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Charles Dickens"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Honor\u00e9 de Balzac"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jean Cocteau"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Speedy Keen"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Edmond Hamilton"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Margaret Drabble"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Arthur Rimbaud"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Victor Hugo', 'Charles Baudelaire'] ['Bob Dylan', 'Richey Edwards', 'Jim Morrison', 'J. Slauerhoff', 'Bob Kaufman', 'Patti Smith', 'Louis-Ferdinand C\u00e9line', 'Dylan Thomas', 'Jack Kerouac', 'William S. Burroughs', 'Allen Ginsberg', 'Henry Miller', 'Pier Paolo Pasolini']\n",
"Roy Krenkel"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Johann David Wyss"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Neal Stephenson"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Thomas Pynchon', 'Bruce Sterling', 'William Gibson', 'David Foster Wallace', 'Philip K. Dick'] ['Charles Stross', 'Daniel Suarez']\n",
"Miles J. Breuer"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jean-Paul Sartre"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['S\u00f8ren Kierkegaard', 'Paul Nizan', 'Gustave Flaubert', 'Albert Camus', 'Jean-Jacques Rousseau', 'Simone de Beauvoir', 'Karl Marx', 'Maurice Merleau-Ponty', 'Alexandre Koj\u00e8ve', 'Sigmund Freud', 'Mao Zedong', 'Edmund Husserl', 'Georg Wilhelm Friedrich Hegel', 'Martin Heidegger', 'Raymond Aron', 'Friedrich Nietzsche'] ['Alain Badiou', 'R. D. Laing', 'Frantz Fanon', 'Simone de Beauvoir', 'Maurice Merleau-Ponty', 'Michel Foucault', 'Albert Camus', 'Raymond Aron', 'Che Guevara']\n",
"Doris Lessing"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Gregory Benford"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Terry Gilliam"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Thomas M. Disch"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Mark Twain"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Jeff Smith (cartoonist)']\n",
"Robert Stone"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Ernest Shackleton"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Neil Gaiman"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Clive Barker', 'James Branch Cabell', 'Jack Vance', 'Ursula K. Le Guin', 'Terry Pratchett', 'Roger Zelazny', 'Peter S. Beagle', 'Shirley Jackson', 'H. P. Lovecraft', 'Lewis Carroll', 'Harlan Ellison', 'Douglas Adams', 'R. A. Lafferty', 'Robert A. Heinlein', 'Ray Bradbury', 'C. S. Lewis', 'Michael Moorcock', 'Gene Wolfe', 'Alan Moore', 'Dave Sim', 'Jorge Luis Borges', 'Edward Plunkett, 18th Baron of Dunsany', 'J. R. R. Tolkien', 'Thorne Smith', 'G. K. Chesterton'] None\n",
"Jonathan Lethem"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['L. J. Davis', 'Don DeLillo', 'H. P. Lovecraft', 'Shirley Hazzard', 'Italo Calvino', 'Vivian Gornick', 'Angela Carter', 'Muriel Spark', 'Friedrich Nietzsche', 'Philip Roth', 'Thomas Berger (novelist)', 'J. G. Ballard', 'James Baldwin', 'Philip K. Dick', 'Lester Bangs', 'Raymond Chandler', 'Robert Altman'] None\n",
"Robert Aickman"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Walter de la Mare', 'E. T. A. Hoffmann', 'Thomas Mann', 'Oliver Onions'] ['Gene Wolfe', 'Peter Straub', 'Ramsey Campbell', 'Clive Barker']\n",
"Stanis\u0142aw Lem"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Mervyn Peake"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Graham Hughes"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Frank Schoonover"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Howard Pyle'] None\n",
"Toni Morrison"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['James Baldwin', 'Virginia Woolf', 'Doris Lessing', 'William Faulkner', 'Zora Neale Hurston', 'Herman Melville'] ['Bell hooks', 'Octavia E. Butler']\n",
"Daniel Defoe"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['George Orwell', 'Jonathan Swift', 'Johann David Wyss', 'Virginia Woolf']\n",
"Michael Chabon"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Edith Wharton', 'John Cheever', 'F. Scott Fitzgerald', 'Mike Davis (scholar)', 'Roger Angell', 'Marcel Proust', 'Gustave Flaubert', 'John Collier (writer)', 'Jorge Luis Borges', 'Richard Yates (novelist)', 'Jan Morris', 'John Keats', 'Robert Stone (novelist)', 'Gabriel Garc\u00eda M\u00e1rquez', 'Robert Graves', 'Michael Moorcock', 'J. G. Ballard', 'Vladimir Nabokov', 'Raymond Chandler', 'Ursula K. Le Guin', \"Frank O'Hara\", 'Henry James'] None\n",
"Walter Scott"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Maria Edgeworth'] ['Bront\u00eb family']\n",
"Jacques Lacan"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Sigmund Freud'] ['Louis Althusser']\n",
"China Mi\u00e9ville"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Edward Plunkett, 18th Baron of Dunsany"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Brothers Grimm', 'Algernon Charles Swinburne', 'Herodotus', 'John Keats', 'Hans Christian Andersen', 'King James Version'] ['Arthur C. Clarke', 'H. P. Lovecraft', 'David Eddings', 'J. R. R. Tolkien', 'Evangeline Walton', 'Michael Moorcock', 'Robert E. Howard', 'Ursula K. Le Guin', 'Jack Vance', 'Neil Gaiman', 'C. S. Lewis']\n",
"Gertrude Barrows Bennett"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['H. P. Lovecraft', 'A. Merritt']\n",
"Geoffrey Chaucer"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Oswald Spengler"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Johann Wolfgang von Goethe'] ['Northrop Frye']\n",
"Camille Flammarion"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Marc Silvestri"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Satoshi Kon"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"William S. Burroughs"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Dashiell Hammett', 'Joseph Conrad', 'Jean Genet', 'Alfred Korzybski', 'Brion Gysin', 'Denton Welch', 'Samuel Beckett', 'Jean-Paul Sartre', 'Jonathan Swift', 'Arthur Rimbaud', 'Jack Black (author)', 'Louis-Ferdinand C\u00e9line', 'Henry Miller', 'Oswald Spengler', 'Tristan Tzara', 'Wilhelm Reich'] ['Alan Moore', 'Paul Di Filippo', 'Lydia Lunch', 'Norman Mailer', 'Robert Wyatt', 'Hunter S. Thompson', 'Poppy Z. Brite', 'Gus Van Sant', 'Tom Waits', 'Brian Eno', 'David Bowie', 'Ian Curtis', 'Mark Leyner', 'Will Self', 'J. G. Ballard', 'William Gibson', 'Grant Morrison', 'Ken Kesey', 'Clive Barker', 'Kathy Acker', 'Lou Reed', 'Keith Haring', 'Kurt Cobain', 'John Zorn', 'Irvine Welsh', 'David Cronenberg', 'Thomas Pynchon', 'Allen Ginsberg', 'Patti Smith', 'Genesis P-Orridge', 'Jack Kerouac', 'Dennis Cooper']\n",
"Yusuke Nakano"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Samuel Beckett"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Dante Alighieri'] ['Theodor W. Adorno']\n",
"Joe Hill (writer)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Dan Simmons"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Harlan Ellison', 'Jack Vance'] ['Iain Banks']\n",
"Nox Arcana"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Kurt Vonnegut"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Michael Swanwick"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Philip K. Dick', 'Gene Wolfe', 'Brian Aldiss', 'Terry Bisson', 'Howard Waldrop', 'Roger Zelazny', 'Samuel R. Delany', 'Jack Vance', 'Walter M. Miller, Jr.', 'Cordwainer Smith'] None\n",
"Robin Hobb"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"George Sand"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Stephen King"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Burton Hatlen', 'John D. MacDonald', 'J. R. R. Tolkien', 'Don Robertson (author)', 'Richard Matheson', 'Ray Bradbury', 'Elmore Leonard', 'Shirley Jackson', 'Bram Stoker', 'Edgar Allan Poe', 'William Golding', 'H. P. Lovecraft'] ['Peter David', 'Damon Lindelof', 'J. J. Abrams', 'Jeaniene Frost']\n",
"Lewis Call"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Friedrich Nietzsche', 'Gilles Deleuze', 'William Gibson'] None\n",
"Yoshihiro Togashi"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Grant Morrison"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Steampunk"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"David D. Friedman"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Robert A. Heinlein', 'Rose Friedman', 'Ronald Coase', 'Friedrich Hayek', 'Adam Smith', 'Richard Timberlake', 'Milton Friedman'] ['Edward Stringham', 'Peter Leeson', 'Patri Friedman', 'Bryan Caplan']\n",
"Karl Marx"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Johann Wolfgang von Goethe', \"Baron d'Holbach\", 'Voltaire', 'Baruch Spinoza', 'Jean-Jacques Rousseau', 'Moses Hess', 'Giambattista Vico', 'Charles Fourier', 'Maximilien de Robespierre', 'Epicurus', 'Pierre-Joseph Proudhon', 'Aristotle', 'Charles Darwin', 'Max Stirner', 'Justus von Liebig', 'Constantin Pecqueur', 'Robert Owen', 'William Shakespeare', 'Fran\u00e7ois Guizot', 'Georg Wilhelm Friedrich Hegel', 'David Ricardo', 'Adam Smith', 'Claude Adrien Helv\u00e9tius', 'Ludwig Feuerbach'] ['Category:Marxists']\n",
"Chris Carter (screenwriter)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Larry Niven"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Dean Koontz"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Jack Vance', 'C. S. Lewis', 'Robert A. Heinlein', 'Ray Bradbury', 'Elmer Kelton', 'James Kirkwood, Jr.', 'John D. MacDonald', 'Walker Percy', 'G. K. Chesterton', 'Charles Dickens', 'James M. Cain', 'T. S. Eliot', 'William Goldman'] ['Bentley Little', 'Ted Dekker', 'Jeaniene Frost']\n",
"The Wachowskis"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Roberto Bola\u00f1o"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Antoine de Saint-Exup\u00e9ry"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Charles Stross"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Isaac Asimov', 'Neal Stephenson', 'Bruce Sterling', 'Robert A. Heinlein', 'William Gibson', 'H. P. Lovecraft', 'John le Carr\u00e9'] None\n",
"Iain Banks"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Arthur C. Clarke', 'Robert A. Heinlein', 'Isaac Asimov', 'M. John Harrison', 'Brian Aldiss', 'Dan Simmons'] ['Ken MacLeod']\n",
"Richard Linklater"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Philip Jos\u00e9 Farmer"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Roland Barthes"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Ferdinand de Saussure'] ['Michel Foucault']\n",
"Hiroyuki Morioka"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Ryu Mitsuse', 'Isaac Asimov', 'Michael Moorcock'] None\n",
"Raymond Roussel"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Lewis Carroll"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Lin Carter"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Robert E. Howard', 'L. Frank Baum', 'Edgar Rice Burroughs', 'Isaac Asimov', 'James Branch Cabell', 'H. P. Lovecraft', 'L. Sprague de Camp'] None\n",
"William Beebe"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Scott Westerfeld"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"James Fenimore Cooper"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Ren\u00e9 Barjavel"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Tom Clancy"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['James Wesley Rawles']\n",
"Catherynne M. Valente"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Vladimir Colin"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['G\u00e9rard Klein', 'Franz Kafka', 'H. P. Lovecraft', 'Karel \u010capek', 'A. Merritt'] ['Bogdan Suceav\u0103', 'Leonard Oprea', 'Horia Aram\u0103']\n",
"R. A. Lafferty"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Ireland', 'Teresa of \u00c1vila'] ['Neil Gaiman', 'Gene Wolfe', 'Ray Vukcevich', 'Terry Bisson']\n",
"Marcel Proust"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jo Walton"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Victor Hugo"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Jean-Jacques Rousseau', 'Voltaire', 'Walter Scott', 'William Shakespeare', 'Fran\u00e7ois-Ren\u00e9 de Chateaubriand', 'Alphonse de Lamartine'] ['Jean Cocteau', 'Jorge Luis Borges', 'Ayn Rand', 'Irvine Welsh', 'Fyodor Dostoyevsky', 'Gustave Flaubert', 'G\u00e9rard de Nerval', 'Louis-Honor\u00e9 Fr\u00e9chette', 'Albert Camus', 'Paul Verlaine', 'Leconte de Lisle', 'Charles Baudelaire', 'Oscar Wilde', 'Charles Dickens', 'Leo Tolstoy']\n",
"Robert H. Goddard"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Slavoj \u017di\u017eek"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Alfred Kubin"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Max Klinger', 'Francisco Goya'] None\n",
"Hermann Oberth"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Walter Jon Williams"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jerry Pournelle"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Russell Kirk', 'A. E. van Vogt', 'Poul Anderson', 'Robert A. Heinlein', 'John W. Campbell'] ['James Wesley Rawles']\n",
"Gustave Flaubert"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Fran\u00e7ois-Ren\u00e9 de Chateaubriand', 'Johann Wolfgang von Goethe', 'Miguel de Cervantes', 'Lord Byron', 'Victor Hugo'] ['Julian Barnes', 'Franz Kafka', 'William H. Gass', 'Guram Dochanashvili', 'Mario Vargas Llosa', 'Ivan Turgenev', 'Anton Chekhov', 'Ezra Pound', 'Guy de Maupassant', 'Alphonse Daudet', 'Jean-Paul Sartre', 'George Orwell', 'Louis-Ferdinand C\u00e9line', 'Grigol Robakidze', 'Vladimir Nabokov', '\u00c9mile Zola', 'Michel Foucault', 'Edmond de Goncourt']\n",
"Terry Dowling"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Colin Greenland"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Emilio Salgari"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Louis Henri Boussenard', 'Alexandre Dumas', 'James Fenimore Cooper', 'Thomas Mayne Reid', 'Jules Verne', 'H. Rider Haggard'] ['Luigi Motta', 'Matteo Mazzuca', 'Emilio Bertinetti', 'Emilio Fancelli', 'Folco Quilici']\n",
"Jacques Cousteau"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"\u00c9douard-Alfred Martel"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Richard E. Byrd"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Chris Wooding"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"George Orwell"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Arthur Koestler', 'James Burnham', 'Henry Fielding', 'James Joyce', 'Tom Wintringham', 'Charles Dickens', 'Aldous Huxley', 'H. G. Wells', 'Leo Tolstoy', 'Jack London', 'Fyodor Dostoyevsky', '\u00c9mile Zola', 'Yevgeny Zamyatin', 'Gustave Flaubert', 'Leon Trotsky', 'W. Somerset Maugham', 'Jonathan Swift', 'Upton Sinclair'] ['Peter Hitchens', 'Glenn Greenwald', 'Anthony Burgess', 'Ignazio Silone', 'Chris Hedges', 'Noam Chomsky', 'Johann Hari', 'Christopher Hitchens', 'Margaret Atwood', 'Thomas Pynchon', 'Ray Bradbury', 'Michael Crichton', 'Joe Sacco', 'Kurt Vonnegut', 'Cory Doctorow', 'Raoul Vaneigem', 'Andrew Sullivan', 'John King (author)', 'Albert Camus']\n",
"Jhonen Vasquez"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jacques Derrida"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Plato'] ['Richard Rorty']\n",
"Allen Steele"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Robert A. Heinlein', 'Arthur C. Clarke'] None\n",
"Fran\u00e7ois Mauriac"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"William Hope Hodgson"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Blaise Cendrars"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Jean Epstein']\n",
"David A. Hargrave"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Michael Moorcock', 'Roger Zelazny', 'Clark Ashton Smith', 'H. P. Lovecraft'] None\n",
"Jacques Arago"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"William Golding"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['John Milton', 'H. G. Wells', 'Homer', 'Jules Verne'] ['Suresh Guptara', 'Stephen King', 'Greg F. Gifune', 'Jyoti Guptara']\n",
"Spider Robinson"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Arthur Conan Doyle"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Mike Chinn"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Howard Chaykin', 'H. P. Lovecraft', 'Michael Moorcock', 'Alan Moore', 'Fritz Leiber', 'Robert E. Howard', 'Ramsey Campbell', 'Neal Adams'] None\n",
"J. G. Ballard"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Salvador Dal\u00ed', 'Franz Kafka', 'Marshall McLuhan', 'James Joyce', 'Alfred Jarry', 'William S. Burroughs', 'Paul Delvaux', 'Sigmund Freud', 'Jean Genet'] ['Christopher Priest (novelist)', 'David Cronenberg', 'Don DeLillo', 'Michael Moorcock', 'Ken MacLeod', 'Jean Baudrillard', 'Jonathan Lethem', 'Bruce Sterling', 'Will Self', 'Alex Garland', 'China Mi\u00e9ville', 'Warren Ellis', 'Thomas M. Disch']\n",
"Jess Nevins"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Alan Moore', 'Michael Moorcock'] None\n",
"Joseph Conrad"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Alexandre Dumas"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"G. K. Chesterton"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Miguel de Cervantes', 'George MacDonald', 'William Blake', 'Catholicism', 'Robert Browning', 'Charles Dickens', 'Robert Louis Stevenson', 'Thomas Aquinas', 'William Cobbett', 'Hilaire Belloc'] ['Susanna Clarke', 'Graham Greene', 'Slavoj \u017di\u017eek', 'Gene Wolfe', 'Franz Kafka', 'R. A. Lafferty', 'David Dark', 'Evelyn Waugh', 'Dorothy Day', 'George Bernard Shaw', 'Aka Morchiladze', 'Ronald Knox', 'Anthony Burgess', 'Garry Wills', 'Alan Watts', 'Brian McLaren', 'J. R. R. Tolkien', 'Aurel Kolnai', 'Terry Pratchett', 'Donald Miller (author)', 'Marshall McLuhan', 'Mahatma Gandhi', 'Carl Amery', 'Jorge Luis Borges', 'Karel \u010capek', 'Agatha Christie', 'Dorothy L. Sayers', 'C. S. Lewis', 'Phillip Blond', 'J. K. Rowling', 'Philip Yancey', 'Neil Gaiman', 'Orson Welles', 'Hannah Arendt', 'Rich Mullins', 'E. F. Schumacher', 'Kevin Carson', 'Ernest Hemingway', 'Gabriel Garc\u00eda M\u00e1rquez']\n",
"Friedrich Nietzsche"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Aristotle'] ['Theodor W. Adorno']\n",
"Haruki Murakami"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['David Lynch', 'Philip K. Dick', 'Kurt Vonnegut', 'Raymond Carver', 'William Shakespeare', 'Fyodor Dostoyevsky', 'Raymond Chandler', 'John Irving', 'Franz Kafka', 'Gabriel Garc\u00eda M\u00e1rquez', 'Honor\u00e9 de Balzac', 'Truman Capote', 'Anton Chekhov', 'Richard Brautigan', 'F. Scott Fitzgerald', 'J. D. Salinger'] None\n",
"Alan Moore"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Jack Kirby', 'William S. Burroughs'] ['Damon Lindelof', 'Neil Gaiman', 'Brian Michael Bendis', 'Warren Ellis', 'Jeff Smith (cartoonist)', 'Darren Aronofsky', 'Dave Gibbons', 'Mark Millar', 'Richard Kelly (director)', 'Joss Whedon']\n",
"Fyodor Dostoyevsky"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jayne Anne Phillips"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"H. P. Lovecraft"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"David Cronenberg"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Cory Doctorow"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['William Gibson'] None\n",
"Linda Nagata"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"John Norman"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Edgar Rice Burroughs'] ['Janet Morris', 'Sharon Green']\n",
"Michel Butor"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Richard K. Morgan"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Michael Moorcock', 'William Gibson'] None\n",
"Jean Baudrillard"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Karl Marx'] ['Giannina Braschi']\n",
"Nathanael West"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Martin Heidegger"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Anaximander'] ['Giorgio Agamben']\n",
"James Joyce"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Fredric Jameson"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Karl Marx'] ['Slavoj \u017di\u017eek']\n",
"Hubert Lyautey"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Donald G. Payne"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"George R. R. Martin"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['F. Scott Fitzgerald', 'William Faulkner', 'George MacDonald Fraser', 'Robert E. Howard', 'Roger Zelazny', 'J. R. R. Tolkien', 'Stan Lee', 'Jack Vance', 'Robert A. Heinlein', 'Bernard Cornwell', 'H. P. Lovecraft'] ['David Anthony Durham', 'Daniel Abraham (author)', 'Scott Lynch', 'Joe Abercrombie', 'Damon Lindelof']\n",
"Paschal Grousset"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"J. Allen St. John"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Marcel Aym\u00e9"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Yuri Gagarin"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"El-P"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Wernher von Braun"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Norbert Casteret"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Howard Pyle"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Albrecht D\u00fcrer', 'Winslow Homer'] ['N. C. Wyeth']\n",
"Junot D\u00edaz"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Ernst Fuchs (artist)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Fridtjof Nansen"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Richard Christian Matheson"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Charlie Kaufman"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Manny Farber"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Kent Jones', 'Duncan Shepherd', 'Ray Pride', 'Jonathan Rosenbaum', 'J. Hoberman', 'Paul Schrader']\n",
"H. Rider Haggard"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Robert Louis Stevenson'] ['George Lucas', 'Joseph Conrad', 'Edgar Rice Burroughs', 'Carl Jung', 'Rudyard Kipling', 'Robert E. Howard', 'C. S. Lewis', 'Henry Miller', 'J. R. R. Tolkien']\n",
"Shelby Robertson"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Immanuel Kant"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Christian Wolff (philosopher)'] ['Western philosophy', 'Johann Gottlieb Fichte']\n",
"Andreas Embirikos"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Edwin Lester Arnold"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Dashiell Hammett"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Tim Powers"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Philip K. Dick'] None\n",
"Paul Claudel"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Arthur Rimbaud', 'Henri Bergson'] None\n",
"Igor Sikorsky"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Virginia Woolf"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Leo Tolstoy', 'William Shakespeare', 'George Eliot', 'Anton Chekhov', 'Daniel Defoe', 'James Joyce', 'Marcel Proust', 'E. M. Forster', 'Emily Bront\u00eb'] ['Toni Morrison', 'Margaret Atwood', 'Michael Cunningham', 'Gabriel Garc\u00eda M\u00e1rquez']\n",
"Tananarive Due"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Howard Hawks"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Carter Kaplan"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Steven Brust"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Rodrigo Fres\u00e1n"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Salvador Dal\u00ed"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Vladimir Nabokov"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Thomas Mayne Reid', 'Anton Chekhov', 'Arthur Conan Doyle', 'Edgar Allan Poe', 'Robert Louis Stevenson', 'Franz Kafka', 'James Joyce', 'Nikolai Gogol', 'Jules Verne', 'Mikhail Lermontov', 'Gustave Flaubert', 'Marcel Proust', 'Alexander Pushkin', 'Robert Browning', 'Charles Dickens', 'Leo Tolstoy'] ['O\u011fuz Atay', 'Javier Mar\u00edas', 'David Cronenberg', 'John Updike', 'John Banville', 'Zadie Smith', 'Edmund Yeo', 'Victor Pelevin', 'Jeffrey Eugenides', 'Nick Cave', 'Don DeLillo', 'Daniel Handler', 'Richard Rorty', 'Thomas Pynchon', 'Stanley Kubrick', 'Joanna Newsom', 'Jhumpa Lahiri', 'Gene Wolfe', 'Michael Chabon', 'Daniel Clowes', 'Martin Amis', 'Terence McKenna', 'Christopher Hitchens', 'Anthony Burgess']\n",
"J. B. S. Haldane"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Thomas Pynchon"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Bruce Sterling"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Samuel R. Delany', 'J. G. Ballard', 'Chad Oliver', 'Alfred Bester'] ['Alastair Reynolds', 'Charles Stross']\n",
"Steven Erikson"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Edgar Rice Burroughs', 'Homer', 'Mark Helprin', 'Glen Cook', 'Stephen R. Donaldson', 'Arthur C. Clarke', 'Roger Zelazny', 'Robert E. Howard', 'G. K. Chesterton', 'Robin Hobb', 'Gustav Hasford'] ['David Keck', 'R. Scott Bakker']\n",
"Vernor Vinge"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Cyberpunk']\n",
"Stephen Baxter"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"John Varley (author)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Rudyard Kipling"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Edgar Rice Burroughs', 'John W. Campbell', 'Robert A. Heinlein', 'Roald Dahl', 'Poul Anderson']\n",
"Lou Reed"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Alberto Santos-Dumont"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Richard L. Tierney"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Daniel Suarez"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Bruce Sterling', 'Neal Stephenson'] None\n",
"Georg Wilhelm Friedrich Hegel"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Jakob B\u00f6hme', 'Neoplatonism', 'Friedrich Wilhelm Joseph Schelling', 'Johann Gottlieb Fichte', 'Friedrich H\u00f6lderlin', 'Immanuel Kant', 'Jean-Jacques Rousseau', 'Gottfried Wilhelm Leibniz', 'Baruch Spinoza', 'Johann Wolfgang von Goethe', 'Ren\u00e9 Descartes', 'Aristotle', 'Adam Smith', 'Heraclitus', 'Plato'] ['Ludwig Feuerbach', 'John Russon', 'Friedrich Nietzsche', 'Karl Marx', 'Herbert Marcuse', 'Eduard Gans', 'Karl Barth', 'Bruno Bauer', 'Robert B. Pippin', 'Heinrich Bernhard Oppenheim', 'Gillian Rose', 'Francis Fukuyama', 'Jacques Derrida', 'Robert Brandom', 'Heinrich Heine', 'Karl Ludwig Michelet', 'Walter Kaufmann (philosopher)', 'Emil Fackenheim', 'Judith Butler', 'Johann Karl Friedrich Rosenkranz', 'Theodor W. Adorno', 'Benedetto Croce', 'Bernard Bosanquet (philosopher)', 'James Doull', 'Hans K\u00fcng', 'Giovanni Gentile', 'Jean-Paul Sartre', 'Gy\u00f6rgy Luk\u00e1cs', 'David Strauss', 'Peter Singer', 'S\u00f8ren Kierkegaard', 'Alexandre Koj\u00e8ve', 'Arthur Danto', 'Slavoj \u017di\u017eek', 'Friedrich Wilhelm Carov\u00e9', 'Hermann Friedrich Wilhelm Hinrichs', 'F. H. Bradley', 'Wilhelm Dilthey', 'Friedrich Engels', 'Johann Eduard Erdmann', 'Kuno Fischer', 'Charles Taylor (philosopher)']\n",
"Maurice Merleau-Ponty"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Henri Bergson'] ['David Abram']\n",
"Kent Jones"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Richard Timberlake"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Earl J. Hamilton', 'Milton Friedman', 'Friedrich Hayek'] ['David D. Friedman']\n",
"Robert Weinberg (author)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Richard Kelly (director)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Darren Aronofsky"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Dylan Thomas"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['John Donne', 'Sigmund Freud', 'James Joyce', 'Arthur Rimbaud', 'T. S. Eliot', 'Welsh mythology', 'D. H. Lawrence'] ['W. S. Graham', 'James K. Baxter', 'John Lennon', 'Theodore Roethke', 'Henry Treece', 'Hedwig Gorski']\n",
"Maximilien de Robespierre"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Thomas Malory"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Alexandre Koj\u00e8ve"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Eugen Bleuler"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Auguste Forel', 'Gottlieb Burckhardt', 'Sigmund Freud'] ['Hermann Rorschach', 'Carl Jung']\n",
"David Lynch"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Martin Amis"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"R. Scott Bakker"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Kevin Carson"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jack Black (author)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Laurell K. Hamilton"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Anthony Masters', 'Robert E. Howard'] ['Jeaniene Frost']\n",
"G\u00e9rard Klein"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Hesiod"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Greg F. Gifune"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['William Golding', 'Jim Thompson (writer)', 'Patricia Highsmith', 'James Dickey', 'John Steinbeck', 'Tennessee Williams', 'Richard Matheson', 'Raymond Chandler', 'James Leo Herlihy', 'Truman Capote', 'Vincent Patrick'] None\n",
"Genesis P-Orridge"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Giannina Braschi"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Emily Dickinson', 'Antonio Buero Vallejo', 'Garcilaso de la Vega (poet)', 'Gustavo Adolfo B\u00e9cquer', 'Miguel de Cervantes', 'Gabriela Mistral', 'Juan Ram\u00f3n Jim\u00e9nez', 'Samuel Beckett', 'Alfred Jarry', 'Juan Rulfo', 'Gertrude Stein', 'Antonin Artaud', 'Heiner M\u00fcller', 'Federico Garc\u00eda Lorca', 'James Joyce'] ['Roberto Bola\u00f1o']\n",
"William H. Gass"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" [\"Brian O'Nolan\", 'Max Black', 'Henry James', 'Gertrude Stein', 'Gustave Flaubert', 'Ludwig Wittgenstein', 'Rainer Maria Rilke'] ['Joanna Scott', 'David Foster Wallace', 'Susan Steinberg (author)', 'John Gardner (American writer)', 'Joy Williams (American writer)']\n",
"Joanna Newsom"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Alphonse de Lamartine"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Dante Alighieri', 'John Milton', 'Emanuel Swedenborg'] ['Victor Hugo', 'W. B. Yeats', 'Hart Crane']\n",
"Isabel Briggs Myers"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Christopher Priest (novelist)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['H. G. Wells', 'John Wyndham'] None\n",
"Robert Owen"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jonathan Rosenbaum"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Manny Farber', 'William Faulkner', 'James Agee'] ['Ignatiy Vishnevetsky']\n",
"Paul Verlaine"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Arthur Schopenhauer', 'Arthur Rimbaud', 'Victor Hugo', 'Charles Baudelaire', 'Leconte de Lisle'] ['Tom Verlaine', 'Maksim Bahdanovi\u010d', 'Arthur Rimbaud']\n",
"Miguel de Cervantes"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Italian Renaissance', 'Chivalric romance', 'Picaresque novel', 'Ancient Greek philosophy', 'Virgil'] ['Graham Greene', 'Henry Fielding', 'Fyodor Dostoyevsky', 'Jos\u00e9 Saramago', 'Charles Dickens', 'Mark Twain', 'Voltaire', 'Miguel de Unamuno']\n",
"Roald Dahl"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Noam Chomsky"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Mikhail Bakunin', 'David Hume', 'Willard Van Orman Quine', 'Bertrand Russell', 'Adam Smith', 'William Chomsky', 'Immanuel Kant', 'Peter Kropotkin', 'P\u0101\u1e47ini', 'Hebrew literature', 'Ren\u00e9 Descartes', 'Alex Carey', 'Wilhelm von Humboldt', 'John Dewey', 'C. West Churchman', 'Ludwig Wittgenstein', 'Alan Turing', 'Russian literature', 'Rudolf Rocker', 'Dwight Macdonald', 'George Orwell', 'Zellig Harris'] ['Daniel Everett', 'Amy Goodman', 'Hugo Ch\u00e1vez', 'Niels Kaj Jerne', 'John Searle', 'Colin McGinn', 'Crispin Wright', 'Ann Nocenti', 'Morris Halle', 'Robert Fisk', 'Norbert Hornstein', 'Aaron Swartz', 'Steven Pinker', 'Daniel Dennett', 'Michael Albert', 'John Backus', 'Stephen Jay Gould', 'Edward Said', 'Donald Knuth', 'Norman Finkelstein']\n",
"L. Frank Baum"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Aristophanes"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Mario Vargas Llosa"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Roger Angell"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Woody Allen', 'William Trevor', 'John Updike']\n",
"Mike Davis (scholar)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Dave Sim"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"F. Scott Fitzgerald"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jean Genet"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Glenn Greenwald"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Daniel Clowes"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Ludwig Feuerbach"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Friedrich Schleiermacher', 'Georg Wilhelm Friedrich Hegel', 'Karl Daub'] ['Bruno Bauer', 'Martin Buber', 'Karl Marx', 'Max Stirner', 'Friedrich Engels']\n",
"Damon Lindelof"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Folco Quilici"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Bront\u00eb family"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Pier Paolo Pasolini"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Gus Van Sant"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Terence McKenna"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['William Blake', 'Marshall McLuhan', 'Hermes Trismegistus', 'Riane Eisler', 'I Ching', 'Pierre Teilhard de Chardin', 'Aldous Huxley', 'Heraclitus', 'Alfred North Whitehead'] ['Bill Hicks', 'Ralph Abraham', 'R. U. Sirius', 'Tom Robbins', 'Rupert Sheldrake', 'Daniel Pinchbeck', 'Clifford A. Pickover', 'Robert Anton Wilson']\n",
"Italo Calvino"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Robert Louis Stevenson', 'Ambrose Bierce', 'Voltaire', 'Samuel Beckett', 'Franz Kafka', 'Edgar Allan Poe', 'Ludovico Ariosto', 'Jorge Luis Borges', 'Georges Perec', 'Vladimir Nabokov', 'Cesare Pavese', 'Raymond Queneau', 'Ernest Hemingway', 'Galileo Galilei'] ['Gore Vidal', 'Aimee Bender', 'Amanda Filipacchi', 'Ismail Kadare', 'W. G. Sebald', 'Salman Rushdie', 'Giulio Angioni', 'Orhan Pamuk', 'Umberto Eco']\n",
"N. C. Wyeth"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Howard Pyle'] ['Andrew Wyeth', 'Jamie Wyeth']\n",
"L. J. Davis"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Louis-Ferdinand C\u00e9line"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"David Keck"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['J. R. R. Tolkien', 'Elmore Leonard', \"Patrick O'Brian\", 'Douglas Adams', 'Steven Pressfield', 'Graham Joyce', 'Steven Erikson'] None\n",
"Talbot Mundy"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Dave Gibbons"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Agatha Christie"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"T. S. Eliot"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Teresa of \u00c1vila"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Hannah Arendt"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Augustine of Hippo', 'Socrates', 'Walter Benjamin', 'Karl Jaspers', 'Immanuel Kant', 'Bernard Lazare', 'Martin Heidegger'] ['Seyla Benhabib', 'Elisabeth Young-Bruehl', 'Giorgio Agamben', 'Julia Kristeva', 'Mario Kopi\u0107']\n",
"Edmund Husserl"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Franz Brentano', 'Gottlob Frege', 'Bernard Bolzano', 'Carl Stumpf', 'Immanuel Kant', 'Ren\u00e9 Descartes', 'Gottfried Wilhelm Leibniz', 'Plato', 'David Hume', 'Hermann Lotze', 'Johann Gottlieb Fichte', 'Karl Weierstrass'] ['Max Scheler', 'Pope John Paul II', 'Kurt G\u00f6del', 'Hans Blumenberg', 'Leszek Ko\u0142akowski', 'Hans K\u00f6chler', 'Jan Pato\u010dka', 'Jacques Derrida', 'Emmanuel Levinas', 'Rudolf Carnap', 'Edith Stein', 'Jean-Paul Sartre', 'Martin Heidegger', 'Bernard Stiegler', 'Ludwig Landgrebe', 'Roman Ingarden', 'Gabriel Marcel', 'Marvin Farber', 'Adolf Reinach', 'Dallas Willard', 'Hermann Weyl', 'Jos\u00e9 Ortega y Gasset', 'Maurice Merleau-Ponty', 'Eugen Fink', 'Paul Ric\u0153ur', 'Shaun Gallagher', 'Dan Zahavi']\n",
"Jack Kirby"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"James Reasoner"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jeff Wassmann"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Le Corbusier', 'Joseph Cornell', 'Eug\u00e8ne Atget', 'Marcel Duchamp'] None\n",
"Mark Millar"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Brion Gysin"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Oscar Wilde"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"King James Version"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Harry Turtledove"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Chris Hedges"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Grigol Robakidze"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Charles Baudelaire', 'Sophocles', 'Symbolism (arts)', 'Ancient Mesopotamian religion', 'Arthur Rimbaud', 'Besiki', 'Gustave Flaubert', 'Stendhal', 'Shota Rustaveli', 'Friedrich Nietzsche', 'Vazha-Pshavela', 'Gilgamesh', 'Russian symbolism', 'Greek mythology', 'Aeschylus', 'Johann Wolfgang von Goethe'] ['Romain Rolland', 'Nikos Kazantzakis', 'Konstantine Gamsakhurdia', 'Stefan Zweig', 'Guram Dochanashvili', 'Niko Lortkipanidze', 'Georgian symbolism', 'German symbolism', 'Blue Horns']\n",
"Richard Rorty"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Plato', 'Willard Van Orman Quine', 'Donald Davidson (philosopher)', 'John Rawls', 'Leo Strauss', 'Vladimir Nabokov', 'Martin Heidegger', 'Walt Whitman', 'Jacques Derrida', 'Michel Foucault', 'Wilfrid Sellars', 'Hans-Georg Gadamer', 'Marcel Proust', 'Friedrich Nietzsche', 'Ludwig Wittgenstein', 'Thomas Kuhn', 'John Dewey'] ['John McDowell', 'Laurence BonJour', 'Robert Brandom', 'Nikolas Kompridis', 'Gianni Vattimo', 'Richard Posner']\n",
"Parmenides"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Heraclitus', 'Pythagoras', 'Xenophanes'] ['Plato', 'Socrates', 'Friedrich Nietzsche', 'Aristotle', 'Martin Heidegger', 'Melissus of Samos', 'Zeno of Elea', 'Baruch Spinoza']\n",
"Friedrich Hayek"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Friedrich von Wieser'] ['Milton Friedman']\n",
"Jesse Bullington"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['William Beckford', 'Roald Dahl', 'Clive Barker', 'Jeff VanderMeer', 'Irvine Welsh', 'Geoffrey Chaucer', 'Brothers Grimm', 'Nick Cave', 'Angela Carter', 'Kentaro Miura', 'Matthew Lewis (writer)'] None\n",
"Ed McBain"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"David Foster Wallace"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Donald Barthelme', 'Richard Powers', 'Don DeLillo', 'Cynthia Ozick', 'William Gaddis', 'Manuel Puig', 'David Lynch', 'Thomas Pynchon'] ['Adam Levin', 'Erik Marcus', 'Zadie Smith', 'Chad Harbach', 'Benjamin Kunkel', 'Joshua Ferris', 'Dave Eggers', 'John Jeremiah Sullivan', 'Neal Stephenson', 'John Green (author)', 'Wells Tower', 'Chris Bachelder']\n",
"Garry Wills"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Patti Smith"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"George MacDonald"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['William Wordsworth', 'Edmund Spenser', 'Friedrich de la Motte Fouqu\u00e9', 'Friedrich Schiller', 'Charles Kingsley', 'Henry David Thoreau', 'Johann Wolfgang von Goethe', 'Novalis', 'Heinrich Heine'] ['J. R. R. Tolkien', 'Mark Twain', 'W. H. Auden', 'David Lindsay (novelist)', \"Madeleine L'Engle\", 'C. S. Lewis', 'G. K. Chesterton']\n",
"Buddhism"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"James Burnham"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Anthony Burgess"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Laurence Sterne', 'George Orwell', 'James Joyce', 'Joseph Conrad', 'Claude L\u00e9vi-Strauss', 'Homer', 'John Milton', 'Aldous Huxley', 'Evelyn Waugh', 'Dante Alighieri', 'Sigmund Freud', 'William Shakespeare', 'Pelagius', 'Ford Madox Ford', 'Samuel Johnson', 'Gerard Manley Hopkins', 'King James Version', 'Christopher Marlowe', 'D. H. Lawrence', 'T. S. Eliot'] None\n",
"Chad Oliver"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Lewis Shiner', 'Howard Waldrop', 'Bruce Sterling']\n",
"Heraclitus"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Alfred North Whitehead', 'Friedrich Nietzsche', 'Oswald Spengler', 'Martin Heidegger', 'Walter Pater', 'Aristotle', 'Terence McKenna', 'Parmenides', 'Plato', 'Georg Wilhelm Friedrich Hegel', 'Friedrich Engels']\n",
"Giambattista Vico"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['John Selden', 'Marcus Terentius Varro', 'Dante Alighieri', 'Plato', 'Herodotus', 'Nicolas Malebranche', 'Gottfried Wilhelm Leibniz', 'Tacitus', 'Niccol\u00f2 Machiavelli', 'Augustine of Hippo', 'Samuel von Pufendorf', 'Francisco Su\u00e1rez', 'Thomas Aquinas', 'Thomas Hobbes', 'Hugo Grotius', 'Cicero', 'Francis Bacon'] ['Fran\u00e7ois-Ren\u00e9 de Chateaubriand', 'Samuel Taylor Coleridge', 'Eric Voegelin', 'Benedetto Croce', 'Isaiah Berlin', 'James Hillman', 'Joseph de Maistre', 'Julius Evola', 'Cornelius Castoriadis', 'Costanzo Preve', 'Marshall McLuhan', 'Erich Auerbach', 'Antonio Gramsci', 'Karl Marx', 'Vittorio H\u00f6sle', 'Northrop Frye', 'Jules Michelet', 'Edgar Quinet', 'Georg Wilhelm Friedrich Hegel', 'James Joyce']\n",
"Cordwainer Smith"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Johann Gottlieb Fichte"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Salomon Maimon', 'Immanuel Kant'] ['Dieter Henrich', 'Georg Wilhelm Friedrich Hegel', 'Friedrich Wilhelm Joseph Schelling', 'Novalis']\n",
"E. T. A. Hoffmann"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Dennis Cooper"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Arthur Rimbaud', 'Robert Bresson', 'Marquis de Sade'] ['Noah Cicero', 'Travis Jeppesen', \"Tony O'Neill\"]\n",
"Douglas Adams"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Leonard Oprea"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"J. K. Rowling"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Harry Potter influences and analogues'] None\n",
"Louis Henri Boussenard"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jhumpa Lahiri"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Richard Yates (novelist)', 'Mavis Gallant', 'Anton Chekhov', 'Andre Dubus', 'William Trevor', 'Leo Tolstoy', 'Alice Munro', 'Vladimir Nabokov'] None\n",
"Aristotle"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Parmenides'] ['Western philosophy', 'Islamic philosophy', 'Age of Enlightenment', 'Jewish philosophy', 'List of writers influenced by Aristotle', 'Christian philosophy']\n",
"Phillip Blond"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['High Tory', 'Distributism', 'Radical Orthodoxy', 'Traditionalist conservatism'] ['David Cameron']\n",
"Elmore Leonard"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Ernest Hemingway'] ['Quentin Tarantino', 'Stephen King']\n",
"Epicurus"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Pyrrho', 'Democritus'] ['Jeremy Bentham', 'Hadrian', 'Pierre Gassendi', 'Metrodorus of Lampsacus (the younger)', 'Karl Marx', 'John Stuart Mill', 'Michel Foucault', 'David Hume', 'Catius', 'Michel Onfray', 'Philodemus', 'Thomas Hobbes', 'Amafinius', 'Hermarchus', 'Immanuel Kant', 'Thomas Jefferson', 'Friedrich Nietzsche', 'Lucretius', 'Han Ryner']\n",
"Matteo Mazzuca"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Gaston Bachelard"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['\u00c9mile Meyerson', 'Auguste Comte'] ['Louis Althusser', 'Alexandre Koyr\u00e9', 'Georges Canguilhem', 'Dominique Lecourt', 'Don Ihde', 'Fran\u00e7ois Dagognet', 'Michel Foucault', 'Thomas Kuhn']\n",
"Robert Graves"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"William Blake"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Charles Fourier"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Paul Goodman (writer)', 'David Harvey', 'Peter Kropotkin', 'Walter Benjamin', 'Andr\u00e9 Breton', 'Raoul Vaneigem', 'Bob Black', 'Peter Lamborn Wilson']\n",
"Tristan Tzara"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Fran\u00e7ois Villon', 'Ion Minulescu', 'Comte de Lautr\u00e9amont', 'Filippo Tommaso Marinetti', 'Walt Whitman', 'Francis Picabia', 'Urmuz', 'Maurice Maeterlinck', 'Adrian Maniu', 'Jules Laforgue', 'Christian Morgenstern', 'Fernand Divoire', 'Henri Barzun', 'Arthur Rimbaud', 'Guillaume Apollinaire', 'Alfred Jarry'] ['Andr\u00e9 Breton', 'William S. Burroughs', 'Allen Ginsberg', 'Jerome Rothenberg', 'Eug\u00e8ne Ionesco', 'Paul \u00c9luard', 'Louis Aragon', 'Samuel Beckett', 'Bruno Jasie\u0144ski', 'Valery Oisteanu', 'Andrei Codrescu', 'Sa\u0219a Pan\u0103', 'Ilarie Voronca', 'Mihail (Marcel) Avramescu', 'Philippe Soupault', 'Isidore Isou', 'Vicente Huidobro', 'Brion Gysin', 'Julius Evola', 'Alberto Savinio', 'Takahashi Shinkichi', 'Jacques G. Costin', 'Moldov', 'Claude Rivi\u00e8re', 'Giuseppe Ungaretti', 'Georges Ribemont-Dessaignes']\n",
"Joe Sacco"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Henry Kuttner"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Hans Christian Andersen"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Ludvig Holberg', 'Brothers Grimm', 'Heinrich Heine', 'William Shakespeare'] None\n",
"Bob Kaufman"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Leon Trotsky"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"John Cheever"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Jane Austen', 'Marcel Proust', 'F. Scott Fitzgerald', 'Charles Dickens', 'Ernest Hemingway', 'Anton Chekhov'] ['Rick Moody', 'John Updike', 'Matthew Weiner', 'Michael Chabon']\n",
"Giorgio Agamben"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Friedrich Nietzsche', 'Claude L\u00e9vi-Strauss', 'Jacques Derrida', 'Aristotle'] ['Justin Clemens', 'Dominick LaCapra', 'Mario Kopi\u0107', 'Tiqqun']\n",
"Federico Fellini"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Thomas Mayne Reid"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Lord Byron'] ['Nikolay Gumilev', 'Vladimir Nabokov', 'Selma Lagerl\u00f6f']\n",
"Mark Helprin"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Victor Pelevin"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Paul Delvaux"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Peter Hitchens"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Don DeLillo"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Malcolm Lowry', 'Fyodor Dostoyevsky', 'Vladimir Nabokov', 'Henry James', 'Thomas Pynchon', 'Hermann Broch', 'William Gaddis', 'Norman Mailer', 'John Dos Passos', 'Saul Bellow', 'Ernest Hemingway', 'Jean-Luc Godard', 'William Faulkner', \"Flannery O'Connor\", 'James Joyce', 'Samuel Beckett', 'Gertrude Stein', 'Ezra Pound', 'Franz Kafka', 'J. G. Ballard'] ['David Mitchell (author)', 'Kevin Barry (author)', 'Tao Lin', 'Jonathan Lethem', 'The Airborne Toxic Event', 'Bret Easton Ellis', 'Colum McCann', 'Rachel Kushner', 'Chuck Palahniuk', 'David Foster Wallace', 'Jonathan Franzen']\n",
"Richey Edwards"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Cormac McCarthy"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['James Joyce', 'MacKinlay Kantor', \"Flannery O'Connor\", 'William Faulkner', 'Ernest Hemingway', 'Fyodor Dostoyevsky', 'Herman Melville'] None\n",
"Protagoras"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Parmenides', 'Democritus'] ['Jeremy Bentham', 'Plato', 'Friedrich Nietzsche', 'F. C. S. Schiller']\n",
"Eric Flint"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Robert A. Heinlein', 'James H. Schmitz'] None\n",
"James Kirkwood, Jr."
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Hermann Hesse"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Friedrich Nietzsche', 'Jacob Burckhardt', 'Indian philosophy', 'Arthur Schopenhauer', 'Baruch Spinoza', 'Johann Wolfgang von Goethe', 'Jens Peter Jacobsen', 'S\u00f8ren Kierkegaard', 'Plato', 'Chinese philosophy', 'Carl Jung', 'Julius Evola'] None\n",
"Marshall McLuhan"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['James Joyce', 'Eric A. Havelock', 'G. K. Chesterton', 'Harold Innis', 'Thomas Nashe', 'Wyndham Lewis', 'I. A. Richards', 'F. R. Leavis', 'Marcel Duchamp'] ['Timothy Leary', 'Walter J. Ong', 'Jean Baudrillard', 'Douglas Coupland', 'Douglas Rushkoff', 'Ann Nocenti', 'William Irwin Thompson', 'Terence McKenna', 'Neil Postman', 'Wired (magazine)', 'Paul Levinson']\n",
"Richard Brautigan"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Walt Whitman', 'Charles Bukowski', 'William Carlos Williams', 'Jack Kerouac', 'Emily Dickinson', 'E. E. Cummings', 'Ernest Hemingway'] ['W. P. Kinsella', 'Don Carpenter', 'Ben Myers', 'Haruki Murakami', 'Philippe Djian', 'William Michaelian']\n",
"Charles Darwin"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['John Herschel', 'Charles Lyell', 'Alexander von Humboldt'] ['John Lubbock, 1st Baron Avebury', 'Ernst Haeckel', 'Joseph Dalton Hooker', 'George Romanes', 'Thomas Henry Huxley']\n",
"Emily Bront\u00eb"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Lydia Lunch"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Marie Taglioni"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Guram Dochanashvili"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Grigol Robakidze', 'Leo Tolstoy', 'Gabriel Garc\u00eda M\u00e1rquez', 'Bible', 'Miguel de Cervantes', 'Sulkhan-Saba Orbeliani', 'Gustave Flaubert', 'Johann Sebastian Bach', 'James Joyce', 'Shota Rustaveli', 'Prosper M\u00e9rim\u00e9e', 'William Faulkner', 'Anton Chekhov'] ['Zaal Samadashvili', 'Davit Kartvelishvili']\n",
"Raoul Vaneigem"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Karl Marx'] ['May 1968 events in France', 'Post-left anarchy']\n",
"M. John Harrison"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Iain Banks', 'China Mi\u00e9ville']\n",
"Theodor W. Adorno"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Robert Altman"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Johann Jakob Bachofen"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Franz Kafka"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Shirley Hazzard"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Symbolism (arts)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Henry Miller"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"George Bernard Shaw"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Ignazio Silone"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Friedrich Wilhelm Joseph Schelling"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Johann Gottfried Herder', 'Johann Wolfgang von Goethe', 'Baruch Spinoza', 'Plato', 'Johann Gottlieb Fichte', 'Immanuel Kant', 'Carl Friedrich Kielmeyer', 'Jakob B\u00f6hme', 'Friedrich H\u00f6lderlin', 'Friedrich Heinrich Jacobi', 'Gottfried Wilhelm Leibniz'] ['S\u00f8ren Kierkegaard', 'Slavoj \u017di\u017eek', 'Victor Cousin', 'Isaac Bernays', 'Karl Christian Friedrich Krause', 'Iain Hamilton Grant', 'Samuel Taylor Coleridge', 'Charles Sanders Peirce', 'Carl Jung', 'Georg Wilhelm Friedrich Hegel', 'Johann Wolfgang von Goethe', 'Martin Heidegger', 'F\u00e9lix Ravaisson-Mollien', 'Georg Anton Friedrich Ast', 'Charles Secr\u00e9tan', 'Paul Tillich', 'Alexandru H\u00e2jdeu', 'Emil Fackenheim']\n",
"Neal Adams"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Sigmund Freud"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Julius von Mayer', 'Ludwig B\u00f6rne', 'Franz Brentano', 'Empedocles', 'William Shakespeare', 'Karl Robert Eduard von Hartmann', 'Ernst Haeckel', 'Charles Darwin', 'Johann Wolfgang von Goethe', 'Plato', 'Arthur Schopenhauer', 'Immanuel Kant', 'Fyodor Dostoyevsky', 'Aristotle', 'John Hughlings Jackson', 'Friedrich Nietzsche', 'Jens Peter Jacobsen', 'Jean-Martin Charcot', 'Sophocles', 'Wilhelm Fliess', 'Josef Breuer'] ['Ellen Bass', 'Fritz Perls', 'Paul Ric\u0153ur', 'Anna Freud', 'Herbert Marcuse', 'Nancy Chodorow', 'Theodor W. Adorno', 'Joel Kovel', 'Philip Rieff', 'Jane Gallop', 'Mark Solms', 'Eric Kandel', 'Karen Horney', 'Ernest Jones', 'J\u00fcrgen Habermas', 'Erich Fromm', 'Lionel Trilling', 'Jean-Fran\u00e7ois Lyotard', 'Carol Gilligan', 'Stefan Molyneux', 'Jacques Derrida', 'Andr\u00e9 Breton', 'Shulamith Firestone', 'Otto Rank', 'Juliet Mitchell', 'Louis Althusser', 'Harold Bloom', 'Harry Stack Sullivan', 'Norman O. Brown', 'Elizabeth Grosz', 'Wilhelm Reich', 'Luce Irigaray', 'F\u00e9lix Guattari', 'Salvador Dal\u00ed', 'Camille Paglia', 'Melanie Klein', 'Jacques Lacan', 'Gilles Deleuze', 'Carl Jung', 'Maurice Merleau-Ponty', 'Arthur Janov', 'Ranjana Khanna', 'Jean-Paul Sartre', 'Julia Kristeva', 'Wilhelm Stekel']\n",
"George Eliot"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Charlotte Bront\u00eb', 'Jane Austen', 'Miguel de Cervantes', 'Baruch Spinoza', 'Honor\u00e9 de Balzac', 'Arthur Schopenhauer', 'Ludwig Feuerbach'] ['Virginia Woolf', 'Marcel Proust', 'Martin Amis', 'Norman Mailer', 'J. K. Rowling', 'Margaret Atwood', 'Leo Tolstoy', 'Thomas Mann', 'Christopher Hitchens']\n",
"Justus von Liebig"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Susanna Clarke"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Jane Austen', 'Ursula K. Le Guin', 'John Fowles', 'Neil Gaiman', 'Alan Moore', 'Charles Dickens'] None\n",
"William Shakespeare"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Paul Auster"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['William Faulkner', 'William Shakespeare', 'Raymond Carver', 'Charles Baudelaire', 'Maurice Blanchot', 'Louis-Ferdinand C\u00e9line', 'Knut Hamsun', 'Miguel de Cervantes', 'Raymond Chandler', 'Ludwig Wittgenstein', 'Jorge Luis Borges', 'Michel de Montaigne', 'Paul Celan', 'Dashiell Hammett', 'Herman Melville', 'Jacques Lacan', 'St\u00e9phane Mallarm\u00e9', 'Edgar Allan Poe', 'Henry David Thoreau', 'F. Scott Fitzgerald', 'Nathaniel Hawthorne', 'Albert Camus', 'Edmond Jab\u00e8s', 'Fyodor Dostoyevsky', 'Franz Kafka', 'Arthur Rimbaud', 'Charles Dickens', 'Samuel Beckett', 'Jacques Derrida', 'James Joyce', 'Leo Tolstoy', 'Kurt Vonnegut'] ['Steven Wright', 'Jonathan Lethem', 'Michael Chabon', 'Hideo Kojima', 'Bill Bryson', 'Christopher Moore (author)', 'Jason Thornberry', 'Steven Hall']\n",
"Peter Leeson"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Gordon Tullock', 'Gary Becker', 'Ludwig von Mises', 'David D. Friedman', 'George Stigler'] None\n",
"Jean Epstein"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"D. H. Lawrence"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Friedrich Nietzsche', 'Herman Melville', 'Joseph Conrad', 'Walt Whitman', 'Lev Shestov', 'Thomas Hardy', 'Arthur Schopenhauer', 'Jens Peter Jacobsen'] ['Joyce Carol Oates', 'Anthony Burgess', 'Charles Bukowski', 'Dylan Thomas', 'Ana\u00efs Nin', 'Ronald Verlin Cassill', 'Aldous Huxley', 'Tennessee Williams', 'Doris Lessing', 'Octavio Paz']\n",
"Rich Mullins"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"L. J. Potts"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"William Cobbett"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['G. K. Chesterton']\n",
"Richard A. Lupoff"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['H. P. Lovecraft'] None\n",
"Daniel Handler"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Franz Kafka', 'Edward Gorey', 'Zilpha Keatley Snyder', 'Dino Buzzati', 'Vladimir Nabokov', 'Edgar Allan Poe', 'C. S. Lewis', 'Roald Dahl'] None\n",
"Marie-Louise von Franz"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Muriel Spark"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Lester Bangs"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Northrop Frye"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['William Blake', 'I. A. Richards', 'F. R. Leavis', 'Oswald Spengler', 'Giambattista Vico'] ['Margaret Atwood', 'B. W. Powe', 'Harold Bloom']\n",
"Bryan Caplan"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['David D. Friedman', 'Gordon Tullock', 'Tyler Cowen', 'Ayn Rand', 'Donald Wittman', 'Murray Rothbard'] None\n",
"Angela Carter"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Mike Nichols"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Truman Capote"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Harper Lee', 'Andy Warhol']\n",
"John Irving"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Charles Dickens', 'Kurt Vonnegut', 'Nathaniel Hawthorne', 'G\u00fcnter Grass', 'Thomas Hardy', 'Robertson Davies'] None\n",
"Andrew J. Offutt"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jack Kerouac"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Marcel Proust', 'James Joyce', 'Lester Young', 'Walt Whitman', 'Charlie Parker', 'Gary Snyder', 'Matsuo Bash\u014d', 'Herman Melville', 'John Fante', 'Hart Crane', 'Diamond Sutra', 'Jack London', 'Fyodor Dostoyevsky', 'Thomas Wolfe', 'Honor\u00e9 de Balzac', 'Arthur Rimbaud', 'William S. Burroughs', 'Henry Miller', 'Louis-Ferdinand C\u00e9line', 'Neal Cassady', 'Ernest Hemingway'] ['Richard Brautigan', 'Ben Gibbard', 'Hunter S. Thompson', 'Tom Waits', 'Haruki Murakami', 'Russell Banks', 'Ken Kesey', 'Will Clarke (novelist)', 'Roy Harper', 'Blake Schwarzenbach', 'Craig Finn', 'Bob Dylan', 'John Lennon', 'Joe Cutler', 'D.M. Court', 'Tom Wolfe', 'Morrissey', 'Tom Robbins', 'Jerry Garcia', 'Thomas Pynchon', 'Joyce Johnson', 'Jim Dodge', 'Jim Morrison']\n",
"Patri Friedman"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Dorothy L. Sayers"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['William Wordsworth', 'Dante Alighieri', 'Thomas Traherne', 'G. K. Chesterton'] ['Diana Gabaldon', 'Stieg Larsson']\n",
"H. Beam Piper"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jonathan Swift"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Steve White (science fiction)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Ted Dekker"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Dean Koontz', 'C. S. Lewis', 'Stephen King'] None\n",
"Howard Waldrop"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Horia Aram\u0103"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" False False\n",
"William Goldman"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Ingmar Bergman', 'Irwin Shaw', 'F. Scott Fitzgerald', 'Ross Macdonald'] ['Joseph Finder', 'Dean Koontz', 'Stephenie Meyer', 'Renatus T\u00f6pke']\n",
"Bentley Little"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['H. P. Lovecraft', 'Stephen King', 'Dean Koontz'] None\n",
"Plutarch"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Marcel Duchamp"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"C. S. Forester"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Conn Iggulden', 'David Weber', 'Bernard Cornwell']\n",
"Thorne Smith"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Elmer Kelton"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Robert Louis Stevenson"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Nathaniel Hawthorne', 'Guy de Maupassant', 'Edgar Allan Poe', 'Charles Dickens'] ['H. Rider Haggard', 'Rudyard Kipling', 'Michael de Larrabeiti', 'Vladimir Nabokov', 'Javier Mar\u00edas', 'Diana Gabaldon', 'G. K. Chesterton', 'Jorge Luis Borges', 'Arthur Conan Doyle', 'J. M. Barrie', 'Ernest Hemingway']\n",
"Francisco Goya"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Shirley Jackson"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Jonathan Lethem', 'Richard Matheson', 'Stephen King', 'Neil Gaiman', 'Brian Freeman', 'Nigel Kneale', 'Poppy Z. Brite', 'Vanna Bonta']\n",
"G\u00e9rard de Nerval"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"John Collier (writer)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Warren Ellis"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"John Zorn"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Clark Ashton Smith"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Edward Stringham"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Friedrich Hayek'] None\n",
"Vivian Gornick"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"E. M. Forster"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Guy de Maupassant"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Arthur Schopenhauer', 'Gustave Flaubert', 'Hippolyte Taine', 'Honor\u00e9 de Balzac', '\u00c9mile Zola'] ['Anton Chekhov', 'Kate Chopin', 'Louis-Ferdinand C\u00e9line', 'Robert Louis Stevenson', 'Isaac Bashevis Singer', 'W. Somerset Maugham', 'H. P. Lovecraft', 'O. Henry', 'Tobias Wolff', 'Henry James', 'Raymond Carver']\n",
"Christopher Hitchens"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['P. G. Wodehouse', 'Sam Harris (author)', 'Colm T\u00f3ib\u00edn', 'Richard Dawkins', 'Noam Chomsky', 'James Fenton', 'James Joyce', 'Daniel Dennett', 'Martin Amis', 'Richard Hofstadter', 'Leon Trotsky', 'Paul Scott (novelist)', 'Joseph Heller', 'Salman Rushdie', 'Aldous Huxley', 'John Stuart Mill', 'Che Guevara', 'Voltaire', 'Oscar Wilde', 'Baruch Spinoza', \"Conor Cruise O'Brien\", 'Albert Camus', 'Karl Marx', 'Susan Sontag', 'Leszek Ko\u0142akowski', 'Ian McEwan', 'Thomas Paine', 'Isaiah Berlin', 'Vladimir Nabokov', 'Jessica Mitford', '\u00c9mile Zola', 'W. H. Auden', 'Israel Shahak', 'Thomas Jefferson', 'Gore Vidal', 'Kingsley Amis', 'Evelyn Waugh', 'Rosa Luxemburg', 'Richard Llewellyn', 'Bertrand Russell', 'Edward Said', 'George Orwell', 'Wilfred Owen', 'George Eliot'] ['Johann Hari', 'Martin Amis']\n",
"Bob Dylan"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Leconte de Lisle"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Andr\u00e9 Ch\u00e9nier', 'Hugues Felicit\u00e9 Robert de Lamennais', 'Jean Racine', 'Horace', 'Alphonse de Lamartine', 'Alfred de Vigny', '\u00c9variste de Parny', 'Fran\u00e7ois de Malherbe', 'Louis M\u00e9nard', 'Victor Hugo'] ['Antoni Lange', 'Jerzy \u017bu\u0142awski', 'Anatole France', 'Jean Richepin', 'Rub\u00e9n Dar\u00edo', 'Leopold Staff', 'Fran\u00e7ois Copp\u00e9e', 'Jos\u00e9-Maria de Heredia', 'Stefan George', 'Rainer Maria Rilke', 'St\u00e9phane Mallarm\u00e9', 'Paul Verlaine', \"Auguste Villiers de l'Isle-Adam\", 'Felicjan Fale\u0144ski', 'L\u00e9on Dierx', 'Sully Prudhomme', 'Adam Asnyk', 'Catulle Mend\u00e8s', 'Arthur Rimbaud']\n",
"Wilhelm Reich"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"D. T. Suzuki"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"E. F. Schumacher"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Brian Eno"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Ferdinand de Saussure"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Hermann Oldenberg', '\u00c9mile Durkheim', 'August Leskien', 'Charles Sanders Peirce'] ['John Rupert Firth', 'Claude L\u00e9vi-Strauss', 'Prague school', 'Roy Harris (linguist)', 'William Labov', 'Leonard Bloomfield', 'Maurice Merleau-Ponty', 'Jacques Lacan', 'Noam Chomsky', 'Roland Barthes', 'Jan Muka\u0159ovsk\u00fd', 'Louis Althusser', 'Sebastian Shaumyan', 'Antoine Meillet', '\u00c9mile Benveniste', 'J\u00fcrgen Habermas', 'Roman Jakobson', 'Jacques Derrida', 'Louis Hjelmslev', 'Michel Foucault', 'Ernesto Laclau']\n",
"S. P. Somtow"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"George MacDonald Fraser"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"John Milton"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Ray Vukcevich"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Margaret Atwood"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"John D. MacDonald"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Diana Gabaldon', 'Spider Robinson', 'Dean Koontz', 'Carl Hiaasen', 'Warren Zevon', 'Stephen King', 'Lee Child']\n",
"Lloyd Alexander"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Welsh mythology', 'T. H. White', 'J. R. R. Tolkien'] ['J. K. Rowling', 'Terry Brooks', 'Clare B. Dunkle', 'George R. R. Martin', 'Katherine Paterson', 'Piers Anthony', 'Terry Pratchett', 'Holly Black', 'Cassandra Clare', 'Jim Butcher']\n",
"Dorothy Day"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"William Faulkner"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Leo Tolstoy', 'Old Testament', 'Charles Dickens', 'Miguel de Cervantes', 'James Joyce', 'Honor\u00e9 de Balzac', 'Joseph Conrad', 'William Shakespeare', 'Gustave Flaubert', 'Herman Melville', 'Fyodor Dostoyevsky', 'Thomas Mann'] ['Mo Yan', 'Gabriel Garc\u00eda M\u00e1rquez', 'Harper Lee', 'Guram Dochanashvili', 'J. M. Coetzee', 'Don DeLillo', 'Ralph Ellison', 'Malcolm Lowry', \"Flannery O'Connor\", 'Cormac McCarthy', 'Bret Easton Ellis', 'Toni Morrison', 'Joyce Carol Oates', 'Philip Roth']\n",
"James Wesley Rawles"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Voltaire"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Cicero', 'Plato', 'Blaise Pascal', 'Isaac Newton', 'John Locke', 'Confucius', 'Henry St John, 1st Viscount Bolingbroke'] ['Alexander Pushkin', 'Frederick the Great', 'Victor Hugo', 'Marquis de Sade', 'Juan Jos\u00e9 Castelli', 'Founding Fathers of the United States', 'French Revolution', 'Karl Marx', 'A. J. Ayer', 'Jean-Paul Sartre', 'Nikola Tesla', 'Friedrich Nietzsche']\n",
"Mikhail Lermontov"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Percy Bysshe Shelley', 'Alexander Pushkin', 'Lord Byron'] ['Osip Mandelstam', 'Ivan Bunin', 'Alexander Blok', 'Boris Pasternak', 'Anna Akhmatova', 'James Joyce', 'Sergei Yesenin', 'Fyodor Dostoyevsky', 'Ivan Turgenev']\n",
"Peter Birkh\u00e4user"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"R. D. Laing"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"C. S. Lewis"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Carl Amery"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Sax Rohmer"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Karel \u010capek"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Edmund Yeo"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Alexander Pushkin"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Gavrila Derzhavin', 'Dante Alighieri', 'Vasily Zhukovsky', 'Lord Byron', 'Nikolay Karamzin', 'William Shakespeare', 'Friedrich Schiller', 'John Keats', '\u00c9variste de Parny', 'Percy Bysshe Shelley', 'Denis Fonvizin', 'Voltaire', 'Johann Wolfgang von Goethe', 'Andr\u00e9 Ch\u00e9nier', 'Konstantin Batyushkov'] ['Marina Tsvetaeva', 'Nikolai Leskov', 'Prosper M\u00e9rim\u00e9e', 'Mikhail Lermontov', 'Anna Akhmatova', 'Nikolay Nekrasov', 'Dylan Thomas', 'Pablo Neruda', 'Alexander Blok', 'Joseph Brodsky', 'Ilya Repin', 'Boris Pasternak', 'Fyodor Dostoyevsky', 'Russian literature', 'Nikolai Gogol', 'Hristo Botev', 'Leo Tolstoy', 'Ivan Turgenev', 'Taras Shevchenko', 'Vladimir Vysotsky', 'Fyodor Tyutchev', 'Anton Chekhov', 'Sergei Yesenin', 'Maxim Gorky', 'Ivan Bunin', 'Mikhail Bulgakov', 'Modest Mussorgsky', 'Ivan Goncharov', 'Constantin Stanislavski', 'Pyotr Ilyich Tchaikovsky', 'Henry James', 'Adam Mickiewicz', 'Osip Mandelstam', 'Mihai Eminescu', 'Aleksandr Solzhenitsyn', 'Vladimir Nabokov']\n",
"William King (author)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Aldous Huxley"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Terry Bisson"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"L. Sprague de Camp"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['David Drake', 'Harry Turtledove', 'Poul Anderson', 'Lin Carter', 'Christopher Stasheff']\n",
"Jack London"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jackson Pollock"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Joan Mir\u00f3', 'Pablo Picasso', 'Thomas Hart Benton (painter)'] ['Helen Frankenthaler']\n",
"Kurt Cobain"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Winslow Homer"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Robert Henri', 'N. C. Wyeth', 'Frederic Remington', 'Howard Pyle']\n",
"Richard Yates (novelist)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Sinclair Lewis', 'Katherine Mansfield', 'Joseph Conrad', 'E. M. Forster', 'Ernest Hemingway', 'John Keats', 'Charles Dickens', 'James Joyce', 'F. Scott Fitzgerald', 'Fyodor Dostoyevsky', 'Gustave Flaubert', 'Ring Lardner', 'Dylan Thomas', 'Leo Tolstoy', 'Anton Chekhov', 'J. D. Salinger'] ['Andre Dubus', 'Tobias Wolff', \"Stewart O'Nan\", 'Robert Stone (novelist)', 'Tao Lin', 'Raymond Carver', 'Michael Chabon', 'William Styron', 'Jhumpa Lahiri', 'Richard Ford', 'Ann Beattie']\n",
"Bell hooks"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Sojourner Truth', 'Gustavo Guti\u00e9rrez', 'Lorraine Hansberry', 'Th\u00edch Nh\u1ea5t H\u1ea1nh', 'Malcolm X', 'Paulo Freire', 'James Baldwin', 'Martin Luther King, Jr.', 'Erich Fromm'] None\n",
"Cyberpunk"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Carl Gustav Carus"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Alfred Korzybski"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Raymond Aron"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Jean-Claude Casanova', 'Zbigniew Brzezinski', 'Andr\u00e9 Glucksmann', 'Henry Kissinger']\n",
"Alfred Jarry"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Category:Marxists"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Daniel Abraham (author)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Joss Whedon', 'Walter Tevis', 'Walter Jon Williams', 'Umberto Eco', 'Albert Camus', 'Alexandre Dumas', 'George R. R. Martin', 'Ted Chiang', 'David Eddings'] ['Blake Charlton']\n",
"Alan Watts"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Christmas Humphreys', 'D. T. Suzuki'] ['Monica Furlong', 'Robert Anton Wilson']\n",
"Robert Wyatt"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Ray Pride"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jim Morrison"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Matthew Stover"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Henry Fielding"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Horace', 'William Shakespeare', 'Samuel Richardson', 'Jonathan Swift', 'Miguel de Cervantes', 'Homer', 'John Milton'] ['George Orwell', 'Charles Dickens', 'Jonathan Coe', 'Novel', 'Andr\u00e9 Gide', 'Milan Kundera', 'Samuel Beckett']\n",
"Jeffrey Eugenides"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Virgil', 'Vladimir Nabokov', 'Saul Bellow', 'Thomas Pynchon', 'John Cheever', 'John Hawkes (novelist)', 'Henry James', 'George Eliot', 'Gabriel Garc\u00eda M\u00e1rquez', 'Philip Roth', 'Euripides'] None\n",
"Ryu Mitsuse"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Raymond Carver"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['V. S. Pritchett', 'Anton Chekhov', \"Frank O'Connor\", 'Isaak Babel', 'Antonio Machado', 'William Carlos Williams', 'James Salter', 'John Gardner (American writer)', 'Ernest Hemingway', 'Richard Yates (novelist)', \"Flannery O'Connor\"] ['Mona Simpson', 'Jay McInerney', 'Jayne Anne Phillips', 'Per Petterson', 'Robert Altman', 'Richard Ford', 'Tobias Wolff', 'Tom Perrotta', 'Tess Gallagher', 'J. Jill Robinson', 'Haruki Murakami', 'K. J. Stevens']\n",
"Moses Hess"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Robert Browning"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"David Anthony Durham"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Russell Banks', 'George R. R. Martin', 'Toni Morrison', 'Mario Vargas Llosa', 'William Faulkner', 'J. R. R. Tolkien', 'Ben Okri', 'Cormac McCarthy', 'Ursula K. Le Guin'] None\n",
"Johann Wolfgang von Goethe"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Christian F\u00fcrchtegott Gellert', 'Baruch Spinoza', 'Jean-Jacques Rousseau', 'Johann Joachim Winckelmann', 'Carl Linnaeus', 'Emanuel Swedenborg', 'Friedrich Schiller', 'Johann Gottfried Herder', 'Gotthold Ephraim Lessing', 'Pedro Calder\u00f3n de la Barca', 'Hafez', 'Friedrich Gottlieb Klopstock', 'James Macpherson', 'Homer', 'William Shakespeare', 'K\u0101lid\u0101sa', 'Oliver Goldsmith', 'Immanuel Kant'] ['Daisaku Ikeda', 'Thomas Carlyle', 'Joaquim Maria Machado de Assis', 'Ludwig Wittgenstein', 'Ivan Turgenev', 'Hermann Hesse', 'Oswald Spengler', 'Friedrich Schiller', 'Sigmund Freud', 'Andr\u00e9 Gide', 'Charles Darwin', 'S\u00f8ren Kierkegaard', 'Grigol Robakidze', 'Max Stirner', 'Milan Kundera', 'Rudolf Steiner', 'G\u00fcnter Grass', 'France Pre\u0161eren', 'Friedrich Wilhelm Joseph Schelling', 'Ernst Cassirer', 'Jean-Baptiste Lamarck', 'Richard Wagner', 'Leopold von Ranke', 'Friedrich Nietzsche', 'Muhammad Iqbal', 'Carl Jung', 'Georg Wilhelm Friedrich Hegel', 'Nikola Tesla', 'Thomas Mann', 'Arthur Schopenhauer', 'Henry David Thoreau']\n",
"Che Guevara"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"S. M. Stirling"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Keith Haring"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Dr. Seuss', 'Walt Disney', 'Pierre Alechinsky', 'William S. Burroughs'] None\n",
"Ronald Coase"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Stephen R. Donaldson"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"H. C. Westermann"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Edward Ruscha', 'Bruce Nauman', 'Kenneth Price', 'Jeff Koons']\n",
"Catholicism"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Alex Garland"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jean-Jacques Rousseau"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Plato', 'Denis Diderot', 'Thomas Hobbes', 'Baruch Spinoza', 'John Locke', 'Niccol\u00f2 Machiavelli'] ['Johann Gottlieb Fichte', 'Georg Wilhelm Friedrich Hegel', 'David Hume', 'Jacques Derrida', 'Maximilien de Robespierre', 'Louis Antoine de Saint-Just', 'Karl Marx', 'Immanuel Kant', 'Louis Althusser', 'Leo Strauss', 'Romanticism', 'Thomas Paine', 'Counter-Enlightenment', 'French Revolution', 'Maria Montessori']\n",
"Frank O'Hara"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Arthur Rimbaud', 'William Carlos Williams', 'Wallace Stevens', 'St\u00e9phane Mallarm\u00e9', 'Boris Pasternak', 'Vladimir Mayakovsky'] ['Alice Notley', 'Ron Padgett', 'Eileen Myles', 'Ted Berrigan']\n",
"Alastair Reynolds"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Linda Nagata', 'Christopher Priest (novelist)', 'Philip K. Dick', 'M. John Harrison', 'J. G. Ballard', 'Joan D. Vinge', 'Samuel R. Delany', 'Joe Haldeman', 'Gwyneth Jones (novelist)', 'Bruce Sterling', 'Geoff Ryman', 'Harry Harrison (writer)', 'Frederik Pohl', 'James Tiptree, Jr.', 'James Blish', 'Isaac Asimov', 'Gregory Benford', 'Larry Niven', 'James White (author)', 'Barrington J. Bayley', 'William Gibson', 'Kim Stanley Robinson', 'Star Trek', 'Michael Swanwick', 'John Varley (author)', 'Gene Wolfe', 'Arthur C. Clarke'] None\n",
"Edith Wharton"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Herodotus"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Thomas Bulfinch"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Philip Roth"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['J. D. Salinger', 'Gustave Flaubert', 'Sherwood Anderson', 'William Faulkner', 'Charlotte Bront\u00eb', 'Ernest Hemingway', 'James Joyce', 'Primo Levi', 'Mark Twain', 'Leo Tolstoy', 'Henry James', 'Albert Camus', 'Bernard Malamud', 'Ralph Ellison', 'Louis-Ferdinand C\u00e9line', 'Henry Miller', 'Franz Kafka', 'Milan Kundera', 'Fyodor Dostoyevsky', 'Saul Bellow', 'John Updike', 'Nikolai Gogol', 'Joseph Conrad', 'Emily Bront\u00eb'] ['Jonathan Franzen', 'Michael Chabon', 'Adam Levin', 'Jonathan Lethem']\n",
"Graham Greene"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Joseph Conrad', 'Henry James', 'Marcel Proust', 'John Buchan', 'Charles P\u00e9guy', 'H. Rider Haggard', 'Robert Louis Stevenson'] None\n",
"Jan Morris"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Charles R. Saunders"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Joseph Campbell"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Oswald Spengler', 'Heinrich Zimmer', 'James George Frazer', 'Adolf Bastian', 'Thomas Mann', 'Carl Jung', 'Sigmund Freud', 'Arthur Schopenhauer', 'James Joyce', 'Jiddu Krishnamurti', 'Friedrich Nietzsche', 'Leo Frobenius'] ['Jim Morrison', 'Senses Fail', 'George Lucas', 'Dan Harmon', 'Alan Watts']\n",
"Anton Chekhov"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Gabriel Garc\u00eda M\u00e1rquez"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Homer"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Rhapsode'] ['Classics']\n",
"Hunter S. Thompson"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['F. Scott Fitzgerald', 'J. P. Donleavy', 'Ayn Rand', 'Federico Garc\u00eda Lorca', 'Jack Kerouac', 'William S. Burroughs', 'Henry Miller', 'Ken Kesey', 'Ernest Hemingway', 'Mark Twain', 'William Faulkner', 'Joseph Conrad', 'H. L. Mencken', 'George Plimpton'] None\n",
"Laozi"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Xuanxue', 'Carl Jung']\n",
"Maria Edgeworth"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Paul Kearney"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Herbert Silberer"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Brian McLaren"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Upton Sinclair"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Will Self"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Jonathan Swift', 'Franz Kafka', 'Lewis Carroll', 'J. G. Ballard'] None\n",
"John Keats"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Poppy Z. Brite"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Paul Nizan"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Mark Leyner"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Algernon Charles Swinburne"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Henri Bergson"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Immanuel Kant'] ['Gilles Deleuze']\n",
"Gregory Maguire"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"John King (author)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['George Orwell', 'Alan Sillitoe'] None\n",
"Russell Kirk"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Ramsey Campbell"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Fritz Leiber', 'H. P. Lovecraft', 'Arthur Machen', 'Algernon Blackwood', 'Vladimir Nabokov', 'Robert Aickman'] ['Poppy Z. Brite', 'Mike Chinn', 'Kealan Patrick Burke']\n",
"Irvine Welsh"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['S\u00f8ren Kierkegaard', 'James Kelman', 'James Joyce', 'Iggy Pop', 'William S. Burroughs', 'Louis-Ferdinand C\u00e9line', 'William McIlvanney', 'Fyodor Dostoyevsky', 'Victor Hugo', 'Alan Spence', 'Alasdair Gray', 'Alexander Trocchi', 'Bertolt Brecht', 'Jim Carroll'] None\n",
"Peter David"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jyoti Guptara"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['George MacDonald', 'Stephen R. Lawhead', 'J. R. R. Tolkien', 'John Milton', 'William Golding', 'C. S. Lewis'] None\n",
"Burton Hatlen"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Yevgeny Zamyatin"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['H. G. Wells'] ['Ray Bradbury', 'George Orwell', 'Aldous Huxley']\n",
"Ayn Rand"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" False False\n",
"Christopher Anvil"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Suresh Guptara"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['C. S. Lewis', 'George MacDonald', 'J. R. R. Tolkien', 'Stephen R. Lawhead', 'William Golding'] None\n",
"John Updike"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Italo Calvino', 'Nathaniel Hawthorne', 'William Shakespeare', 'Marcel Proust', 'Vladimir Nabokov', 'Henry James', 'Herman Melville'] None\n",
"James M. Cain"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Scott Lynch"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Fran\u00e7ois-Ren\u00e9 de Chateaubriand"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Mao Zedong"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"J. J. Abrams"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Thomas Mann"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Heinrich B\u00f6ll', 'Joseph Heller', 'Yukio Mishima', 'Orhan Pamuk']\n",
"Ernest Hemingway"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Simone de Beauvoir"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Henri Bergson'] ['Judith Butler']\n",
"Brian Michael Bendis"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Gustav Hasford"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Zora Neale Hurston"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Zadie Smith', 'Alice Walker', 'Barbara Smith', 'Toni Morrison', 'Maya Angelou']\n",
"Henry James"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Edgar Allan Poe', 'Nathaniel Hawthorne', 'Charles Dickens', 'Ivan Turgenev', 'Alexander Pushkin', 'Jane Austen', 'Honor\u00e9 de Balzac', 'Henrik Ibsen'] None\n",
"Christian Wolff (philosopher)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Ehrenfried Walther von Tschirnhaus', 'Aristotle', 'Thomas Aquinas', 'Ren\u00e9 Descartes', 'Francisco Su\u00e1rez', 'Gottfried Wilhelm Leibniz'] ['Emer de Vattel', 'Immanuel Kant', 'Georg Bernhard Bilfinger', 'Michael Christoph Hanow', 'Johannes Nikolaus Tetens', 'Alexander Gottlieb Baumgarten']\n",
"Claude Adrien Helv\u00e9tius"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"O\u011fuz Atay"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Karl Edward Wagner"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Harold Lamb"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Leo Tolstoy"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Paul Schrader"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Paul Di Filippo"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Charles Baudelaire"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Edmond de Goncourt"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Pierre Janet"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Carl Jung', 'William James']\n",
"Hilaire Belloc"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Walker Percy"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Albert Camus', 'Jean-Paul Sartre', 'S\u00f8ren Kierkegaard', 'Gabriel Marcel', 'Thomas Aquinas', 'Charles Sanders Peirce', 'Susanne Langer'] None\n",
"Frantz Fanon"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Gy\u00f6rgy Luk\u00e1cs', 'Karl Marx', 'Chester Himes', 'Aim\u00e9 C\u00e9saire', 'Sigmund Freud', 'Georg Wilhelm Friedrich Hegel', 'Jean-Paul Sartre', 'N\u00e9gritude', 'Alfred Adler', 'Carl Jung'] ['Achille Mbembe', 'Malcolm X', 'Steve Biko', 'Che Guevara', 'Huey P. Newton', 'Lewis Gordon', '\u00c9douard Glissant', 'Bobby Seale', 'Paulo Freire', 'Ali Shariati', 'Edward Said']\n",
"Camille Paglia"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Erich Neumann (psychologist)', 'Simone de Beauvoir', 'Marquis de Sade', 'Walter Pater', 'Harold Bloom', 'Kenneth Clark', 'Jane Ellen Harrison', 'Sigmund Freud', 'Marshall McLuhan', 'James George Frazer', 'Arnold Hauser (art historian)', 'Gaston Bachelard', 'Oscar Wilde', 'Carl Jung', 'G. Wilson Knight', 'Friedrich Nietzsche', 'Norman O. Brown'] None\n",
"David Ricardo"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Adam Smith'] ['Ricardian socialism']\n",
"Tom Wintringham"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Western philosophy"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Emil Petaja"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Robert E. Howard', 'H. G. Wells', 'H. P. Lovecraft', 'Clark Ashton Smith', 'George Sterling'] ['Hannes Bok']\n",
"Brothers Grimm"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Ken Kesey"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['William Faulkner', 'Sigmund Freud', 'William Shakespeare', 'Ernest Hemingway', 'Jack Kerouac', 'William S. Burroughs', 'Fyodor Dostoyevsky', 'Friedrich Nietzsche', 'Charles Dickens', 'Mark Twain'] ['Hunter S. Thompson', 'Lester Bangs', 'Tom Wolfe', 'Paul McCartney', 'Jerry Garcia', 'Chuck Palahniuk']\n",
"Walter de la Mare"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Baron d'Holbach"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Thomas Hobbes', 'Henry St John, 1st Viscount Bolingbroke'] ['Michel Onfray', 'Adam Weishaupt', 'Karl Marx']\n",
"David Gemmell"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Clive Barker"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Alphonse Daudet"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['\u00c9mile Zola', 'Fr\u00e9d\u00e9ric Mistral', 'Charles Dickens', 'Gustave Flaubert'] None\n",
"Stan Lee"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Thomas Berger (novelist)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Franz Kafka', 'Bob and Ray', 'Friedrich Nietzsche', 'Vladimir Nabokov', 'Frank Norris', 'Herman Melville', 'Tobias Smollett', 'H. G. Wells', 'Jonathan Swift', 'Mark Twain'] ['Jonathan Lethem']\n",
"Bogdan Suceav\u0103"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Johann Hari"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Glen Cook"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Raymond Chandler"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Dashiell Hammett'] ['John Shannon (novelist)', 'Haruki Murakami', 'Robert B. Parker', 'Robert Crais', 'Colin Bateman', 'Michael Chabon', 'Coen brothers', 'Ross Macdonald', 'Kelli Stanley', 'Roberto Bola\u00f1o', 'Michael Connelly', 'Mark Knopfler', 'Paul Auster', 'Quentin Tarantino', 'Peter Spiegelman', 'Paul D. Marks']\n",
"Peter S. Beagle"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Laurens van der Post"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Bram Stoker"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"S\u00f8ren Kierkegaard"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Brian McNaughton"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Socrates"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Western philosophy', 'Aristotle', 'Antisthenes', 'Plato', 'Aristippus']\n",
"Lord Byron"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Alexander Pope', 'Edmund Spenser', 'John Milton'] ['Ilia Chavchavadze', 'Laza Kosti\u0107', 'Gustave Flaubert', 'Ebenezer Elliott', 'James Joyce', 'Mikhail Lermontov', 'Charlotte Bront\u00eb', 'Heinrich Heine', 'Knut Hamsun', 'Alexander Pushkin', 'Anne Bront\u00eb', 'John Clare', 'Seamus Heaney', 'Ivan Turgenev', 'Emily Bront\u00eb']\n",
"Louis Althusser"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Karl Marx'] ['Michel Foucault']\n",
"Nick Cave"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Aurel Kolnai"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['G. K. Chesterton', 'Edmund Husserl', 'Franz Brentano'] None\n",
"Sharon Green"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Michael Crichton"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Jules Verne', 'Arthur Conan Doyle', 'Mark Twain', 'George Orwell'] None\n",
"St\u00e9phane Mallarm\u00e9"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Louis-Honor\u00e9 Fr\u00e9chette"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Javier Mar\u00edas"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Don Robertson (author)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Andrew Sullivan"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Aesop"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Diogenes La\u00ebrtius', 'Phaedrus (fabulist)', 'Dositheus Magister', 'Herodotus', 'Aristotle', 'Maximus Planudes', 'Babrius', 'Avianus', 'Sophocles', 'Aristophanes', 'Himerius', 'Plutarch', 'Socrates', 'Demetrius of Phalerum']\n",
"John Banville"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Franz Kafka', 'Samuel Beckett', 'Henry James', 'Heinrich von Kleist', 'Harold Pinter', 'Arthur Koestler'] None\n",
"Howard Chaykin"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Ireland"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Evelyn Waugh"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Thomas Aquinas"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Albrecht D\u00fcrer"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Evangeline Walton"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Joe Abercrombie"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Julian Barnes"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Jules Renard', 'Gustave Flaubert', 'Igor Stravinsky', \"Frank O'Connor\", 'Ford Madox Ford'] None\n",
"Gilles Deleuze"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Martin Heidegger', 'Henri Bergson', 'Louis Althusser', 'Baruch Spinoza', 'Jean Hyppolite', 'Michel Foucault', 'Immanuel Kant', 'Georges Canguilhem', 'Gottfried Wilhelm Leibniz', 'Friedrich Nietzsche', 'Marcel Proust', 'Sigmund Freud', 'Jean Wahl', 'Maurice de Gandillac', 'Jacques Lacan', 'Karl Marx', 'David Hume', 'Ferdinand Alqui\u00e9'] ['Michel Foucault', 'Pierre Klossowski', 'Manuel De Landa', 'Michael Hardt', 'Peter Hallward', 'Jean-Jacques Lecercle', 'Marko \u0160tempihar', 'John Protevi', 'Antonio Negri', 'Brian Massumi', 'F\u00e9lix Guattari']\n",
"Transcendentalism"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Ronald Knox"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Adam Smith"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Aristotle'] ['Fr\u00e9d\u00e9ric Bastiat']\n",
"Nathaniel Hawthorne"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Ivan Turgenev"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Mikhail Bakunin', 'Friedrich Schiller', 'Lord Byron', 'William Shakespeare', 'Alexander Pushkin', 'Arthur Schopenhauer', 'Mikhail Lermontov', 'August Wilhelm Schlegel', 'Alexander Druzhinin', 'Georg Wilhelm Friedrich Hegel', 'Johann Wolfgang von Goethe', 'Vissarion Belinsky', 'Pavel Annenkov'] ['Joseph Conrad', 'Vladimir Nabokov', 'Ir\u00e8ne N\u00e9mirovsky', 'Truman Capote', 'Ernest Hemingway', 'Theodor Storm', 'Herman Bang', 'Gustave Flaubert', 'Henry James', 'Anton Chekhov']\n",
"Ezra Pound"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Keith Laumer"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Bernard Cornwell"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['C. S. Forester', 'George MacDonald Fraser'] ['George R. R. Martin', 'Conn Iggulden', 'Simon Scarrow', 'Angus Donald']\n",
"Norman Mailer"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['James T. Farrell', 'Henry Miller', 'John Dos Passos', 'Ernest Hemingway', 'William Faulkner'] ['Matthew Barney', 'Tom Wolfe', 'Jim Morrison', 'Don DeLillo', 'Lester Bangs', 'Martin Amis', 'Truman Capote']\n",
"Constantin Pecqueur"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Janet Morris"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Orphism (religion)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Alain Badiou"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Karl Marx', 'Georg Cantor', 'Jean-Fran\u00e7ois Lyotard', 'Louis Althusser', 'Georg Wilhelm Friedrich Hegel', 'Paul Cohen (mathematician)', 'Gilles Deleuze', 'St\u00e9phane Mallarm\u00e9', 'Jacques Lacan', 'Fernando Pessoa', 'Jean-Paul Sartre', 'Samuel Beckett', 'Sylvain Lazarus', 'Mao Zedong', 'Plato'] ['Sylvain Lazarus', 'Ray Brassier', 'Peter Hallward', 'Oliver Feltham', 'Frank Ruda', 'Nina Power', 'Alberto Toscano', 'Bruno Bosteels', 'Simon Critchley', 'Quentin Meillassoux', 'Justin Clemens', 'Slavoj \u017di\u017eek', 'Jason Barker']\n",
"Michael Cunningham"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Virginia Woolf', 'Walt Whitman'] None\n",
"Nikolai Gogol"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Alexander Pushkin', 'Miguel de Cervantes'] ['Jos\u00e9 Saramago', 'Andrei Bely', 'Ivan Turgenev', 'Sholem Aleichem', 'Constantin Stanislavski', 'Leo Tolstoy', 'William Gaddis', 'Fyodor Dostoyevsky', 'Vladimir Nabokov', 'Eugene H\u00fctz']\n",
"Rafael Sabatini"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Milton Friedman"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Adam Smith'] ['Margaret Thatcher']\n",
"John Ringo"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Rudyard Kipling', 'Robert A. Heinlein', 'David Weber', 'David Drake'] None\n",
"Emilio Bertinetti"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Fran\u00e7ois Guizot"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jeaniene Frost"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Diana Gabaldon', 'Dean Koontz', 'Laurell K. Hamilton', 'Stephen King', 'Bertrice Small'] None\n",
"James Baldwin"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Richard Wright (author)', 'Elia Kazan', 'Malcolm X', 'Black church', 'Miles Davis', 'Bessie Smith', 'Henry James', 'Medgar Evers', 'Beauford Delaney'] ['Angela Davis', 'Suzan-Lori Parks', 'Eldridge Cleaver', 'Huey P. Newton', 'Toni Morrison', 'Susan Straight', 'Robert Jensen', 'Maya Angelou', 'Rip Torn', 'Spike Lee', 'Bell hooks']\n",
"Max Stirner"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Georg Wilhelm Friedrich Hegel', 'Bruno Bauer', 'Jean-Baptiste Say', 'Adam Smith', 'Ludwig Feuerbach'] ['Miguel Gim\u00e9nez Igualada', 'Robert Anton Wilson', 'Rudolf Steiner', '\u00c9mile Armand', 'Bob Black', 'Saul Newman', 'Wilhelm Reich', 'Benjamin Tucker', 'Carl Schmitt', 'Renzo Novatore', 'Albert Camus', 'Gustav Landauer', 'Adolf Brand', 'Friedrich Nietzsche', 'Karl Marx', 'Emma Goldman', 'Enrico Arrigoni', 'Friedrich Engels', 'John Henry Mackay', 'Wolfi Landstreicher', 'Steven T. Byington', 'Herbert Read', 'Ernst J\u00fcnger']\n",
"Ian Curtis"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Orson Welles"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Kathy Acker"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['William S. Burroughs', 'Black Mountain poets', 'Gilles Deleuze', 'David Antin'] None\n",
"Ken MacLeod"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['J. G. Ballard', 'Bruce Sterling', 'Iain Banks', 'John Brunner (novelist)', 'William Gibson'] None\n",
"John le Carr\u00e9"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Emilio Fancelli"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Peter Straub"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Confucius"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['I Ching', 'Book of Rites'] ['Mencius', 'Christian Wolff (philosopher)', 'Ezra Pound', 'Robert Cummings Neville', 'Xuanxue', 'Neo-Confucianism', 'Chinese philosophy', 'Xunzi', 'Fran\u00e7ois Quesnay']\n",
"Robert Stone (novelist)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Ernest Hemingway', 'Graham Greene', 'Fyodor Dostoyevsky', 'Joseph Conrad'] ['John Shannon (novelist)', 'Christian Bauman', 'Denis Johnson', 'Jonathan Lethem']\n",
"\u00c9mile Zola"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Anaximander"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Thales'] ['Pythagoras', 'Democritus', 'Anaximenes of Miletus', 'Ancient Greek astronomy']\n",
"Duncan Shepherd"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Max Klinger"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Albert Camus"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Donald Miller (author)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Luigi Motta"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Oliver Onions"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Denton Welch"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Pierre-Joseph Proudhon"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Charles Fourier', 'Jean-Jacques Rousseau'] ['Mikhail Bakunin', 'Georges Sorel', 'Karl Marx', 'Joseph D\u00e9jacque']\n",
"Zadie Smith"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Charles Dickens', 'Philip Roth', 'Martin Amis', 'Franz Kafka', 'David Foster Wallace', 'Zora Neale Hurston', 'Raymond Carver', 'P. G. Wodehouse', 'Vladimir Nabokov', 'Salman Rushdie', 'E. M. Forster', 'Hanif Kureishi'] None\n",
"J. D. Salinger"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['F. Scott Fitzgerald', 'Ernest Hemingway'] ['Matthew Weiner', 'Igor \u0160tiks', 'Wes Anderson', 'Richard Yates (novelist)', 'Stephen Chbosky', 'John Green (author)', 'Philip Roth', 'J. K. Rowling', 'John Updike', 'Haruki Murakami', 'Jonathan Safran Foer', 'Louis Sachar', 'Tom Robbins', 'Alberto Fuguet', 'DC Pierson']\n",
"W. Somerset Maugham"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Rose Friedman"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Baruch Spinoza"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Avicenna', 'Aristotle', 'Democritus', 'Plato', 'Thomas Hobbes', 'Averroes', 'Stoicism', 'Abraham ibn Ezra', 'Niccol\u00f2 Machiavelli', 'Ren\u00e9 Descartes', 'Lucretius', 'Maimonides', 'Epicurus'] ['Gabriel Wagner', 'Donald Davidson (philosopher)', 'Antonio Negri', 'George Eliot', 'Novalis', 'Louis Althusser', 'Sigmund Freud', 'Samuel Taylor Coleridge', 'Albert Einstein', 'Arne N\u00e6ss', 'George Santayana', 'Karl Marx', 'Gilles Deleuze', 'Ludwig Wittgenstein', 'Michael Hardt', 'Arthur Schopenhauer', 'Leo Strauss', 'Georges Bataille', 'Gottfried Wilhelm Leibniz', 'Friedrich Nietzsche', 'Johann Wolfgang von Goethe', 'Johann Gottlieb Fichte', 'Georg Wilhelm Friedrich Hegel']\n",
"Walter M. Miller, Jr."
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Philip Yancey"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"David Dark"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Aka Morchiladze"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"David Eddings"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Edward Plunkett, 18th Baron of Dunsany'] ['Christopher Paolini']\n",
"Dante Alighieri"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Mahatma Gandhi"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"J. Hoberman"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Jonas Mekas', 'Andrew Sarris'] None\n",
"Pythagoras"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Thales', 'Anaximander', 'Pherecydes of Syros'] ['Parmenides', 'Philolaus', 'Hippasus', 'Euclid', 'Alcmaeon of Croton', 'Plato', 'Johannes Kepler', 'Empedocles']\n",
"Allen Ginsberg"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Helena Blavatsky"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Jeff Smith (cartoonist)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Erich Neumann (psychologist)"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Carl Jung', 'Sigmund Freud'] ['Camille Paglia']\n",
"Patrick O'Brian"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Arthur Koestler"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Gilbert Ryle'] None\n",
"Tom Waits"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"Michel Foucault"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Louis Althusser'] ['Edward Said']\n",
"John Jakes"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"J. Slauerhoff"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" ['Lu\u00eds de Cam\u00f5es', 'J.H. Leopold', 'Tristan Corbi\u00e8re', 'Arthur Rimbaud', 'Charles Baudelaire', 'Hendrik Marsman', 'Paul Verlaine'] ['Willem de M\u00e9rode', 'Simon Vestdijk', 'Cees Nooteboom', 'Gerrit Komrij']\n",
"Karlfried Graf D\u00fcrckheim"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None None\n",
"David Drake"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
" None ['Joel Rosenberg (science fiction author)']\n"
]
}
],
"prompt_number": 8
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#for a in authors:\n",
"# if a in g.nodes():\n",
"# g[a]['emphasis'] = 1"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 34
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"g['Samuel R. Delany']"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 36,
"text": [
"{'Alastair Reynolds': {'weight': 1},\n",
" 'Michael Swanwick': {'weight': 1},\n",
" 'Octavia E. Butler': {'weight': 1},\n",
" 'Junot D\u00edaz': {'weight': 1},\n",
" 'emphasis': 1,\n",
" 'Neil Gaiman': {'weight': 1},\n",
" 'William Gibson': {'weight': 1},\n",
" 'Jo Walton': {'weight': 1},\n",
" 'Bruce Sterling': {'weight': 1}}"
]
}
],
"prompt_number": 36
}
],
"metadata": {}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment