-
Notifications
You must be signed in to change notification settings - Fork 31
/
README.txt
41 lines (32 loc) · 1.43 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Installer: http://MrFeinberg.com/haikufinder-1.1.zip
*
* REQUIRES NLTK, THE NATURAL LANGUAGE TOOLKIT
* http://www.nltk.org/download
*
A Python hack to find "haikus" in English text. For the purposes of this
module, a "haiku" is one or more complete sentences that, together, can be
broken into groups of 5, 7, and 5 syllables. Each canididate haiku line,
and then the entire haiku, has to make it through a few heuristics to
filter out constructions that are likely to scan awkwardly (like verb
phrases split across lines). Since this code doesn't really try to
understand the texts, it might throw away a few legitimate phrases, and it
certainly lets through some bad ones.
Any improvements would be welcomed.
The license, found in license.txt, is "modified BSD".
Example usage:
text = open("ulysses.txt", "r").read()
haikus = HaikuFinder(text).find_haikus()
for haiku in haikus:
print haiku[0]
print " %s" % haiku[1]
print haiku[2]
print
If you find that the HaikuFinder doesn't seem to recognize some word
you're using, or is counting its syllables incorrectly, you can say
HaikuFinder.add_word('shmeggegge', 3)
HaikuFinder.add_word('kvetch', 1)
haikus = HaikuFinder('''
For this I should stay? To hear some shmeggegge kvetch about his lawsuit?
''').find_haikus()
If you like, you can fork the project, modify the custom.dict, and submit a pull
request. I'll accept all useful dictionary additions.