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.
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.
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))