Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
24 changes: 24 additions & 0 deletions code
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from pathlib import Path


input_file = Path("pope-iliad.txt") #what is coming in
output_dir = Path("output_lines") #what is going out

#output
output_dir.mkdir(exist_ok=True)

with input_file.open("r", encoding="utf-8") as file:
lines = file.readlines() #for a list

#slice
start_index = 0
end_index = start_index + 1000
sliced_lines = lines[start_index:end_index]

#individual files
for i, line in enumerate(sliced_lines, start=1):
output_path = output_dir / f"line_{i}.txt"
with output_path.open("w", encoding="utf-8") as out_file:
out_file.write(line)

print(f"Successfully wrote {len(sliced_lines)} lines to '{output_dir}'.")
1 change: 1 addition & 0 deletions output_lines/line_1.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The Project Gutenberg eBook of The Iliad
1 change: 1 addition & 0 deletions output_lines/line_10.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_100.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Map, titled “GRÆCIÆ ANTIQUÆ”
1 change: 1 addition & 0 deletions output_lines/line_1000.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
stamped archetypus of the great whole, a poem like the Iliad can never
1 change: 1 addition & 0 deletions output_lines/line_101.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
THE COUNCIL OF THE GODS
1 change: 1 addition & 0 deletions output_lines/line_102.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Map of the Plain of Troy
1 change: 1 addition & 0 deletions output_lines/line_103.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VENUS, WOUNDED IN THE HAND, CONDUCTED BY IRIS TO MARS
1 change: 1 addition & 0 deletions output_lines/line_104.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
OTUS AND EPHIALTES HOLDING MARS CAPTIVE
1 change: 1 addition & 0 deletions output_lines/line_105.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DIOMED CASTING HIS SPEAR AT MARS
1 change: 1 addition & 0 deletions output_lines/line_106.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
JUNO
1 change: 1 addition & 0 deletions output_lines/line_107.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
HECTOR CHIDING PARIS
1 change: 1 addition & 0 deletions output_lines/line_108.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
THE MEETING OF HECTOR AND ANDROMACHE
1 change: 1 addition & 0 deletions output_lines/line_109.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
BOWS AND BOW CASE
1 change: 1 addition & 0 deletions output_lines/line_11.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Title: The Iliad
1 change: 1 addition & 0 deletions output_lines/line_110.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
IRIS
1 change: 1 addition & 0 deletions output_lines/line_111.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
HECTOR AND AJAX SEPARATED BY THE HERALDS
1 change: 1 addition & 0 deletions output_lines/line_112.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GREEK AMPHORA—WINE VESSELS
1 change: 1 addition & 0 deletions output_lines/line_113.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
JUNO AND MINERVA GOING TO ASSIST THE GREEKS
1 change: 1 addition & 0 deletions output_lines/line_114.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
THE HOURS TAKING THE HORSES FROM JUNO’S CAR
1 change: 1 addition & 0 deletions output_lines/line_115.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
THE SHIELD OF ACHILLES
1 change: 1 addition & 0 deletions output_lines/line_116.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
PLUTO
1 change: 1 addition & 0 deletions output_lines/line_117.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
THE EMBASSY TO ACHILLES
1 change: 1 addition & 0 deletions output_lines/line_118.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GREEK GALLEY
1 change: 1 addition & 0 deletions output_lines/line_119.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
PROSERPINE
1 change: 1 addition & 0 deletions output_lines/line_12.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_120.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ACHILLES
1 change: 1 addition & 0 deletions output_lines/line_121.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DIOMED AND ULYSSES RETURNING WITH THE SPOILS OF RHESUS
1 change: 1 addition & 0 deletions output_lines/line_122.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
THE DESCENT OF DISCORD
1 change: 1 addition & 0 deletions output_lines/line_123.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
HERCULES
1 change: 1 addition & 0 deletions output_lines/line_124.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
POLYDAMAS ADVISING HECTOR
1 change: 1 addition & 0 deletions output_lines/line_125.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GREEK ALTAR
1 change: 1 addition & 0 deletions output_lines/line_126.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEPTUNE RISING FROM THE SEA
1 change: 1 addition & 0 deletions output_lines/line_127.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GREEK EARRINGS
1 change: 1 addition & 0 deletions output_lines/line_128.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SLEEP ESCAPING FROM THE WRATH OF JUPITER
1 change: 1 addition & 0 deletions output_lines/line_129.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GREEK SHIELD
1 change: 1 addition & 0 deletions output_lines/line_13.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Author: Homer
1 change: 1 addition & 0 deletions output_lines/line_130.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
BACCHUS
1 change: 1 addition & 0 deletions output_lines/line_131.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
AJAX DEFENDING THE GREEK SHIPS
1 change: 1 addition & 0 deletions output_lines/line_132.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CASTOR AND POLLUX
1 change: 1 addition & 0 deletions output_lines/line_133.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Buckles
1 change: 1 addition & 0 deletions output_lines/line_134.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DIANA
1 change: 1 addition & 0 deletions output_lines/line_135.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SLEEP AND DEATH CONVEYING THE BODY OF SARPEDON TO LYCIA
1 change: 1 addition & 0 deletions output_lines/line_136.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ÆSCULAPIUS
1 change: 1 addition & 0 deletions output_lines/line_137.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
FIGHT FOR THE BODY OF PATROCLUS
1 change: 1 addition & 0 deletions output_lines/line_138.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VULCAN FROM AN ANTIQUE GEM
1 change: 1 addition & 0 deletions output_lines/line_139.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
THETIS ORDERING THE NEREIDS TO DESCEND INTO THE SEA
1 change: 1 addition & 0 deletions output_lines/line_14.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_140.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
JUNO COMMANDING THE SUN TO SET
1 change: 1 addition & 0 deletions output_lines/line_141.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TRIPOD
1 change: 1 addition & 0 deletions output_lines/line_142.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
THETIS AND EURYNOME RECEIVING THE INFANT VULCAN
1 change: 1 addition & 0 deletions output_lines/line_143.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VULCAN AND CHARIS RECEIVING THETIS
1 change: 1 addition & 0 deletions output_lines/line_144.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
THETIS BRINGING THE ARMOUR TO ACHILLES
1 change: 1 addition & 0 deletions output_lines/line_145.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
HERCULES
1 change: 1 addition & 0 deletions output_lines/line_146.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
THE GODS DESCENDING TO BATTLE
1 change: 1 addition & 0 deletions output_lines/line_147.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CENTAUR
1 change: 1 addition & 0 deletions output_lines/line_148.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ACHILLES CONTENDING WITH THE RIVERS
1 change: 1 addition & 0 deletions output_lines/line_149.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
THE BATH
1 change: 1 addition & 0 deletions output_lines/line_15.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Annotator: Theodore Alois Buckley
1 change: 1 addition & 0 deletions output_lines/line_150.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ANDROMACHE FAINTING ON THE WALL
1 change: 1 addition & 0 deletions output_lines/line_151.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
THE FUNERAL PILE OF PATROCLUS
1 change: 1 addition & 0 deletions output_lines/line_152.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CERES
1 change: 1 addition & 0 deletions output_lines/line_153.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
HECTOR’S BODY AT THE CAR OF ACHILLES
1 change: 1 addition & 0 deletions output_lines/line_154.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
THE JUDGMENT OF PARIS
1 change: 1 addition & 0 deletions output_lines/line_155.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
IRIS ADVISES PRIAM TO OBTAIN THE BODY OF HECTOR
1 change: 1 addition & 0 deletions output_lines/line_156.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
FUNERAL OF HECTOR
1 change: 1 addition & 0 deletions output_lines/line_157.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_158.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_159.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_16.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_160.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_161.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
INTRODUCTION.
1 change: 1 addition & 0 deletions output_lines/line_162.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_163.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_164.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Scepticism is as much the result of knowledge, as knowledge is of
1 change: 1 addition & 0 deletions output_lines/line_165.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
scepticism. To be content with what we at present know, is, for the
1 change: 1 addition & 0 deletions output_lines/line_166.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
most part, to shut our ears against conviction; since, from the very
1 change: 1 addition & 0 deletions output_lines/line_167.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
gradual character of our education, we must continually forget, and
1 change: 1 addition & 0 deletions output_lines/line_168.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
emancipate ourselves from, knowledge previously acquired; we must set
1 change: 1 addition & 0 deletions output_lines/line_169.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
aside old notions and embrace fresh ones; and, as we learn, we must be
1 change: 1 addition & 0 deletions output_lines/line_17.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Translator: Alexander Pope
1 change: 1 addition & 0 deletions output_lines/line_170.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
daily unlearning something which it has cost us no small labour and
1 change: 1 addition & 0 deletions output_lines/line_171.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
anxiety to acquire.
1 change: 1 addition & 0 deletions output_lines/line_172.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_173.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
And this difficulty attaches itself more closely to an age in which
1 change: 1 addition & 0 deletions output_lines/line_174.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
progress has gained a strong ascendency over prejudice, and in which
1 change: 1 addition & 0 deletions output_lines/line_175.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
persons and things are, day by day, finding their real level, in lieu
1 change: 1 addition & 0 deletions output_lines/line_176.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
of their conventional value. The same principles which have swept away
1 change: 1 addition & 0 deletions output_lines/line_177.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
traditional abuses, and which are making rapid havoc among the revenues
1 change: 1 addition & 0 deletions output_lines/line_178.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
of sinecurists, and stripping the thin, tawdry veil from attractive
1 change: 1 addition & 0 deletions output_lines/line_179.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
superstitions, are working as actively in literature as in society. The
1 change: 1 addition & 0 deletions output_lines/line_18.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_180.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
credulity of one writer, or the partiality of another, finds as
1 change: 1 addition & 0 deletions output_lines/line_181.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
powerful a touchstone and as wholesome a chastisement in the healthy
1 change: 1 addition & 0 deletions output_lines/line_182.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
scepticism of a temperate class of antagonists, as the dreams of
1 change: 1 addition & 0 deletions output_lines/line_183.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
conservatism, or the impostures of pluralist sinecures in the Church.
1 change: 1 addition & 0 deletions output_lines/line_184.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
History and tradition, whether of ancient or comparatively recent
1 change: 1 addition & 0 deletions output_lines/line_185.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
times, are subjected to very different handling from that which the
1 change: 1 addition & 0 deletions output_lines/line_186.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
indulgence or credulity of former ages could allow. Mere statements are
1 change: 1 addition & 0 deletions output_lines/line_187.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
jealously watched, and the motives of the writer form as important an
1 change: 1 addition & 0 deletions output_lines/line_188.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ingredient in the analysis of his history, as the facts he records.
1 change: 1 addition & 0 deletions output_lines/line_189.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Probability is a powerful and troublesome test; and it is by this
1 change: 1 addition & 0 deletions output_lines/line_19.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Release date: July 1, 2004 [eBook #6130]
1 change: 1 addition & 0 deletions output_lines/line_190.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
troublesome standard that a large portion of historical evidence is
1 change: 1 addition & 0 deletions output_lines/line_191.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sifted. Consistency is no less pertinacious and exacting in its
1 change: 1 addition & 0 deletions output_lines/line_192.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
demands. In brief, to write a history, we must know more than mere
1 change: 1 addition & 0 deletions output_lines/line_193.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
facts. Human nature, viewed under an induction of extended experience,
1 change: 1 addition & 0 deletions output_lines/line_194.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
is the best help to the criticism of human history. Historical
1 change: 1 addition & 0 deletions output_lines/line_195.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
characters can only be estimated by the standard which human
1 change: 1 addition & 0 deletions output_lines/line_196.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
experience, whether actual or traditionary, has furnished. To form
1 change: 1 addition & 0 deletions output_lines/line_197.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
correct views of individuals we must regard them as forming parts of a
1 change: 1 addition & 0 deletions output_lines/line_198.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
great whole—we must measure them by their relation to the mass of
1 change: 1 addition & 0 deletions output_lines/line_199.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
beings by whom they are surrounded, and, in contemplating the incidents
1 change: 1 addition & 0 deletions output_lines/line_2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_20.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Most recently updated: April 23, 2022
1 change: 1 addition & 0 deletions output_lines/line_200.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
in their lives or condition which tradition has handed down to us, we
1 change: 1 addition & 0 deletions output_lines/line_201.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
must rather consider the general bearing of the whole narrative, than
1 change: 1 addition & 0 deletions output_lines/line_202.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the respective probability of its details.
1 change: 1 addition & 0 deletions output_lines/line_203.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_204.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
It is unfortunate for us, that, of some of the greatest men, we know
1 change: 1 addition & 0 deletions output_lines/line_205.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
least, and talk most. Homer, Socrates, and Shakespere[1] have, perhaps,
1 change: 1 addition & 0 deletions output_lines/line_206.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
contributed more to the intellectual enlightenment of mankind than any
1 change: 1 addition & 0 deletions output_lines/line_207.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
other three writers who could be named, and yet the history of all
1 change: 1 addition & 0 deletions output_lines/line_208.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
three has given rise to a boundless ocean of discussion, which has left
1 change: 1 addition & 0 deletions output_lines/line_209.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
us little save the option of choosing which theory or theories we will
1 change: 1 addition & 0 deletions output_lines/line_21.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_210.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
follow. The personality of Shakespere is, perhaps, the only thing in
1 change: 1 addition & 0 deletions output_lines/line_211.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
which critics will allow us to believe without controversy; but upon
1 change: 1 addition & 0 deletions output_lines/line_212.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
everything else, even down to the authorship of plays, there is more or
1 change: 1 addition & 0 deletions output_lines/line_213.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
less of doubt and uncertainty. Of Socrates we know as little as the
1 change: 1 addition & 0 deletions output_lines/line_214.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
contradictions of Plato and Xenophon will allow us to know. He was one
1 change: 1 addition & 0 deletions output_lines/line_215.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
of the _dramatis personæ_ in two dramas as unlike in principles as in
1 change: 1 addition & 0 deletions output_lines/line_216.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
style. He appears as the enunciator of opinions as different in their
1 change: 1 addition & 0 deletions output_lines/line_217.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tone as those of the writers who have handed them down. When we have
1 change: 1 addition & 0 deletions output_lines/line_218.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
read Plato _or_ Xenophon, we think we know something of Socrates; when
1 change: 1 addition & 0 deletions output_lines/line_219.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
we have fairly read and examined both, we feel convinced that we are
1 change: 1 addition & 0 deletions output_lines/line_22.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Language: English
1 change: 1 addition & 0 deletions output_lines/line_220.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
something worse than ignorant.
1 change: 1 addition & 0 deletions output_lines/line_221.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_222.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
It has been an easy, and a popular expedient, of late years, to deny
1 change: 1 addition & 0 deletions output_lines/line_223.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the personal or real existence of men and things whose life and
1 change: 1 addition & 0 deletions output_lines/line_224.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
condition were too much for our belief. This system—which has often
1 change: 1 addition & 0 deletions output_lines/line_225.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
comforted the religious sceptic, and substituted the consolations of
1 change: 1 addition & 0 deletions output_lines/line_226.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Strauss for those of the New Testament—has been of incalculable value
1 change: 1 addition & 0 deletions output_lines/line_227.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
to the historical theorists of the last and present centuries. To
1 change: 1 addition & 0 deletions output_lines/line_228.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
question the existence of Alexander the Great, would be a more
1 change: 1 addition & 0 deletions output_lines/line_229.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
excusable act, than to believe in that of Romulus. To deny a fact
1 change: 1 addition & 0 deletions output_lines/line_23.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_230.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
related in Herodotus, because it is inconsistent with a theory
1 change: 1 addition & 0 deletions output_lines/line_231.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
developed from an Assyrian inscription which no two scholars read in
1 change: 1 addition & 0 deletions output_lines/line_232.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the same way, is more pardonable, than to believe in the good-natured
1 change: 1 addition & 0 deletions output_lines/line_233.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
old king whom the elegant pen of Florian has idealized—_Numa
1 change: 1 addition & 0 deletions output_lines/line_234.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Pompilius._
1 change: 1 addition & 0 deletions output_lines/line_235.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_236.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Scepticism has attained its culminating point with respect to Homer,
1 change: 1 addition & 0 deletions output_lines/line_237.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
and the state of our Homeric knowledge may be described as a free
1 change: 1 addition & 0 deletions output_lines/line_238.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
permission to believe any theory, provided we throw overboard all
1 change: 1 addition & 0 deletions output_lines/line_239.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
written tradition, concerning the author or authors of the Iliad and
1 change: 1 addition & 0 deletions output_lines/line_24.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Credits: Anne Soulard, Juliet Sutherland, Charles Franks, and The Online Distributed Proofreading Team
1 change: 1 addition & 0 deletions output_lines/line_240.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Odyssey. What few authorities exist on the subject, are summarily
1 change: 1 addition & 0 deletions output_lines/line_241.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dismissed, although the arguments appear to run in a circle. “This
1 change: 1 addition & 0 deletions output_lines/line_242.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cannot be true, because it is not true; and, that is not true, because
1 change: 1 addition & 0 deletions output_lines/line_243.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
it cannot be true.” Such seems to be the style, in which testimony upon
1 change: 1 addition & 0 deletions output_lines/line_244.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
testimony, statement upon statement, is consigned to denial and
1 change: 1 addition & 0 deletions output_lines/line_245.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
oblivion.
1 change: 1 addition & 0 deletions output_lines/line_246.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_247.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
It is, however, unfortunate that the professed biographies of Homer are
1 change: 1 addition & 0 deletions output_lines/line_248.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
partly forgeries, partly freaks of ingenuity and imagination, in which
1 change: 1 addition & 0 deletions output_lines/line_249.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
truth is the requisite most wanting. Before taking a brief review of
1 change: 1 addition & 0 deletions output_lines/line_25.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_250.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the Homeric theory in its present conditions, some notice must be taken
1 change: 1 addition & 0 deletions output_lines/line_251.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
of the treatise on the Life of Homer which has been attributed to
1 change: 1 addition & 0 deletions output_lines/line_252.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Herodotus.
1 change: 1 addition & 0 deletions output_lines/line_253.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_254.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
According to this document, the city of Cumæ in Æolia, was, at an
1 change: 1 addition & 0 deletions output_lines/line_255.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
early period, the seat of frequent immigrations from various parts of
1 change: 1 addition & 0 deletions output_lines/line_256.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Greece. Among the immigrants was Menapolus, the son of Ithagenes.
1 change: 1 addition & 0 deletions output_lines/line_257.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Although poor, he married, and the result of the union was a girl named
1 change: 1 addition & 0 deletions output_lines/line_258.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Critheïs. The girl was left an orphan at an early age, under the
1 change: 1 addition & 0 deletions output_lines/line_259.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
guardianship of Cleanax, of Argos. It is to the indiscretion of this
1 change: 1 addition & 0 deletions output_lines/line_26.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_260.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
maiden that we “are indebted for so much happiness.” Homer was the
1 change: 1 addition & 0 deletions output_lines/line_261.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
first fruit of her juvenile frailty, and received the name of
1 change: 1 addition & 0 deletions output_lines/line_262.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Melesigenes, from having been born near the river Meles, in Bœotia,
1 change: 1 addition & 0 deletions output_lines/line_263.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
whither Critheïs had been transported in order to save her reputation.
1 change: 1 addition & 0 deletions output_lines/line_264.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions output_lines/line_265.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
“At this time,” continues our narrative, “there lived at Smyrna a man
1 change: 1 addition & 0 deletions output_lines/line_266.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
named Phemius, a teacher of literature and music, who, not being
Loading