0

I need to download all .txt files from this bookshelf.

Is it possible via wget? I can't seem to find any parametres to pass regarding the bookshelf categorizing.

1 Answers1

0

It's a little outdated but you can try https://github.com/aparrish/gutenberg-dammit

from gutenbergdammit.ziputils import searchandretrieve
for info, text in searchandretrieve("gutenberg-dammit-files-v002.zip", {'Title': 'Made Easy'}):
    print(info['Title'][0], len(text))
alvas
  • 115,346
  • 109
  • 446
  • 738