From 571da4fa476048b819eb625129d69e28d4afa226 Mon Sep 17 00:00:00 2001 From: Gene Johnson Date: Sat, 14 Mar 2026 19:03:38 -0700 Subject: [PATCH 1/2] feat: Add several new authors and their text sources to the `TEXTS` dictionary. --- mainline.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/mainline.py b/mainline.py index 2dfd9eb..592beab 100755 --- a/mainline.py +++ b/mainline.py @@ -70,6 +70,15 @@ POETRY_SOURCES = { "Thoreau": "https://www.gutenberg.org/cache/epub/205/pg205.txt", "Emerson": "https://www.gutenberg.org/cache/epub/2944/pg2944.txt", "Whitman II": "https://www.gutenberg.org/cache/epub/8388/pg8388.txt", + "Rilke": "https://www.gutenberg.org/cache/epub/38594/pg38594.txt", + "Pound": "https://www.gutenberg.org/cache/epub/41162/pg41162.txt", + "Pound II": "https://www.gutenberg.org/cache/epub/51992/pg51992.txt", + "Eliot": "https://www.gutenberg.org/cache/epub/1567/pg1567.txt", + "Yeats": "https://www.gutenberg.org/cache/epub/38877/pg38877.txt", + "Masters": "https://www.gutenberg.org/cache/epub/1280/pg1280.txt", + "Baudelaire": "https://www.gutenberg.org/cache/epub/36098/pg36098.txt", + "Crane": "https://www.gutenberg.org/cache/epub/40786/pg40786.txt", + "Poe": "https://www.gutenberg.org/cache/epub/10031/pg10031.txt", } # ─── ANSI ───────────────────────────────────────────────── From 5474c58ce0747efca66b59e8f24a6cace7d44009 Mon Sep 17 00:00:00 2001 From: Gene Johnson Date: Sat, 14 Mar 2026 19:05:25 -0700 Subject: [PATCH 2/2] Remove Thoreau and Emerson from poetry sources. --- mainline.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/mainline.py b/mainline.py index 592beab..212f002 100755 --- a/mainline.py +++ b/mainline.py @@ -67,8 +67,6 @@ MESSAGE_DISPLAY_SECS = 30 # how long a message holds the screen POETRY_SOURCES = { "Whitman": "https://www.gutenberg.org/cache/epub/1322/pg1322.txt", "Dickinson": "https://www.gutenberg.org/cache/epub/12242/pg12242.txt", - "Thoreau": "https://www.gutenberg.org/cache/epub/205/pg205.txt", - "Emerson": "https://www.gutenberg.org/cache/epub/2944/pg2944.txt", "Whitman II": "https://www.gutenberg.org/cache/epub/8388/pg8388.txt", "Rilke": "https://www.gutenberg.org/cache/epub/38594/pg38594.txt", "Pound": "https://www.gutenberg.org/cache/epub/41162/pg41162.txt",