Created
March 14, 2015 19:06
-
-
Save anonymous/d432388d5bb9309020a7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# flatten the hierarchy of a Gutenberg CD | |
cp $(find iso -name "*.txt") lt/corpus |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# parse the master list of books in a Gutenberg CD | |
with open("master_list.csv") as f: | |
meta = [[((title + ": " + subtitle) if subtitle else title), (ln, fn), txt] for title,subtitle,fn,ln,txt,html,catmo,catyear,lang in csv.reader(f) if lang is '' and txt is not ''] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment