mikeckennedy / python-jumpstart-course-demos

Contains all the "handout" materials for my Python Jumpstart by Building 10 Apps course. This includes try it yourself and finished versions of the 10 apps.
https://talkpython.fm/course
MIT License
746 stars 537 forks source link

Text search documents #31

Closed SteveECda closed 6 years ago

SteveECda commented 6 years ago

Hi Mike. I didn't find the target documents for app 8 of the Jump-start course. I couldn't match your results because I don't have the .txt documents you searched.

Could you make those available?

Thanks Steve Erickson ps. I love your podcast & have bought the 2016 bundle. This course is bringing back old memories and new ambitions.

mikeckennedy commented 6 years ago

Hi Steve,

Thanks for taking the courses and listening to the podcast!

I don't have the text files available. I didn't put them in github because it was 2GB of text. All I did was download maybe 10 long books in text form from https://www.gutenberg.org/ Then I duplicated them (copy paste, repeat) until I had a ton of text to mess with.

Best, Michael

On Mon, Jan 1, 2018 at 12:19 PM Steve notifications@github.com wrote:

Hi Mike. I didn't find the target documents for app 8 of the Jump-start course. I couldn't match your results because I don't have the .txt documents you searched.

Could you make those available?

Thanks Steve Erickson ps. I love your podcast & have bought the 2016 bundle. This course is bringing back old memories and new ambitions.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/mikeckennedy/python-jumpstart-course-demos/issues/31, or mute the thread https://github.com/notifications/unsubscribe-auth/AB8PabyQWQKwlgZt4eAbC99FQcT9qUFeks5tGT3rgaJpZM4RQKT7 .

dneff commented 6 years ago

A simple python project resolved this for me:

https://github.com/puntonim/gutenberg-bulk-downloader

I downloaded a few thousand txt files, unzipped them and had 1.2 GB worth of text pretty quickly.

mikeckennedy commented 6 years ago

Thanks for the link @dneff that is handy.