- description
- # POETRY
## Overview
This segment, labeled "POETRY," is part of a technical manual script titled [Shakespeare Complete Works Download Script](arke:01KG8AWGEP5VC33Q2EJ85FCB6J). It contains shell commands for downloading various poetry collections and individual works by William Shakespeare. The segment was extracted on January 30, 2026, from the file [download_shakespeare.sh](arke:01KG89K4MCC02B3RKGNV2XEV39) and is part of the [Shakespeare](arke:01KG89JREDR8WY5QQGYR5FZRDY) collection.
## Context
This "POETRY" segment follows the "HISTORIES" segment ([arke:01KG8AWVSEZACXM55MNQXH97CH](arke:01KG8AWVSEZACXM55MNQXH97CH)) and precedes the "ILLUSTRATED SPECIAL EDITIONS" segment ([arke:01KG8AWVSHCZFGA2VEQ6W3ZKST](arke:01KG8AWVSHCZFGA2VEQ6W3ZKST)) within the larger download script. The script itself is designed to systematically download different categories of Shakespeare's works.
## Contents
The segment lists specific poetry works to be downloaded, including:
* Sonnets (1905 Bodleian Facsimile)
* Venus and Adonis (1905 Sidney Lee Facsimile)
* The Rape of Lucrece (1655 edition with Faithorne Portrait)
* The Phoenix and the Turtle and The Lover's Complaint
* The Poems (1832 Dyce Edition, illustrated)
* Poems and Pericles Facsimiles (1905 Oxford edition)
Each entry includes a `download` command specifying the source archive path and the local destination path for the PDF file.
- description_generated_at
- 2026-01-30T20:53:31.689Z
- description_model
- gemini-2.5-flash-lite
- description_title
- POETRY
- end_line
- 191
- extracted_at
- 2026-01-30T20:53:12.673Z
- extracted_by
- structure-extraction-lambda
- start_line
- 162
- text
- # ==========================================
# POETRY (deduplicated, best editions)
# ==========================================
echo ""
echo "=== POETRY ==="
# Sonnets - 1905 Bodleian Facsimile (best facsimile)
download "$ARCHIVE_BASE/shakespearessonn00shakrich/shakespearessonn00shakrich.pdf" \
"$BASE_DIR/poetry/01_sonnets_1905_bodleian_facsimile.pdf"
# Venus and Adonis - 1905 Sidney Lee Facsimile
download "$ARCHIVE_BASE/shakespearesvenu00shakrich/shakespearesvenu00shakrich.pdf" \
"$BASE_DIR/poetry/02_venus_and_adonis_1905_facsimile.pdf"
# Rape of Lucrece - 1655 with RARE Faithorne Portrait ⭐
download "$ARCHIVE_BASE/rapeoflucrececom00shak/rapeoflucrececom00shak.pdf" \
"$BASE_DIR/poetry/03_rape_of_lucrece_1655_faithorne_portrait.pdf"
# Phoenix and Turtle + Lover's Complaint
download "$ARCHIVE_BASE/loverscomplaintp00shak/loverscomplaintp00shak.pdf" \
"$BASE_DIR/poetry/04_phoenix_and_turtle_lovers_complaint_1906.pdf"
# The Poems - 1832 Dyce Edition ILLUSTRATED ⭐
download "$ARCHIVE_BASE/poemsofshakespea00shak/poemsofshakespea00shak.pdf" \
"$BASE_DIR/poetry/05_poems_collected_1832_dyce_illustrated.pdf"
# Poems and Pericles Facsimiles - comprehensive 1905 Oxford
download "$ARCHIVE_BASE/poemspericles00shakgoog/poemspericles00shakgoog.pdf" \
"$BASE_DIR/poetry/06_poems_pericles_facsimiles_1905_oxford.pdf"
- title
- POETRY