O’Reilly is known for excellent technical books and they’ve collected a few great programming books on topics like Java, Python, Open Source, etc and made them entirely free. Just need an email address and PDF, Mobi or ePub reader.
How to get free books:
- Visit the companies website by clicking “Get This Offer (External Website)”
- Click on a book you want, then enter name and email address.
- Hit “Get Your Free eBook” and download your book in PDF, Mobi or ePub. Repeat for any of the other books!
* eBook reader required to read books. Valid email not required.
Fluent Python: Clear, Concise, and Effective Programming. Luciano Ramalho (O’Reilly, 2014) This book was written for experienced Python 2 programmers who want to become proficient in Python 3. Consequently, this book is perfect for someone with a solid foundation in the basics of Python, 2 or 3, who wants to take their skills to the next level. Fluent Python: Clear, Concise, and Effective Programming. Luciano Ramalho (O’Reilly, 2014) This book was written for experienced Python 2 programmers who want to become proficient in Python 3. Consequently, this book is perfect for someone with a solid foundation in the basics of Python, 2 or 3, who wants to take their skills to the next level.
This page lists a bunch of FREE O’Reilly books:
When such a neat list is available,downloading them in bulk can become very easy sometimes.Luckily that is indeed the case for this list.Let’s take a closer look.
The first book on the list is The Secrets Behind Great One-on-One Meetings,the URL points to:
On that page there is a form to fill to get the page with download links.On the download page, the book is available in PDF, MOBI and EPUB formats,via the links:
Notice the similarities between the link on the first page,and the download links.With the complete list of the books,and with some simple transformations and looping,you can download the books in bulk.
One easy way to get the complete list is with jQuery.Open the JavaScript console of your browser,for example Chrome or Firefox.Notice that the links to free books all have URL ending with .csp
.The DOM query to find those links can be written as:
We can extract from this result just the href
fields,join them with line breaks and print as plain list on the console:
Save this in a file, let’s call it list.txt
.
With a little shell scripting,we can loop over this list,and make the necessary minor transformations to download all the books,grouped into folders by category:
That’s basically it. Beware, at the time of this writing,the total size of the collection is around 4.5 gigabytes.