vcashk / hathitrustPDF

Download an entire book (or publication) in PDF file from Hathi Trust Digital Library without "partner login" requirement

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hathi Trust Digital Library - Complete PDF Download

Download an entire book (or publication) in PDF from Hathi Trust Digital Library without "partner login" requirement.

Motivation

Hathi Trust Digital Library is a good site to find old publications digitized from different university libraries. However, it limits the download of full PDF files to only partner universities, which are mostly american. In this sense, this code attempts to democratize knowledge and permits to download complete public domain works in PDF from Hathi Trust website.

Requirements

How to use it

Copy Hathi Trust book URL and paste into "link" variable on code line:

...
link = "https://babel.hathitrust.org/cgi/pt?id=mdp.39015023320164"
r  = requests.get(link)
...

OBS: Keep the same pattern presented (numbers at the end)!

After that, all pages will be downloaded as PDF files and merged in a single file named BOOKNAME_output.pdf in the corresponding folder. The individual pages are not deleted after the end of the process!

Slice pages

The code also allows you to remove only a range of pages. For that purpose, just edit the start and end page on code line:

...
# Download pdf file
begin_page=1
last_page=pages_book+1

for actual_page in range(begin_page, last_page):
...

Screenshot

captura-hait

About

Download an entire book (or publication) in PDF file from Hathi Trust Digital Library without "partner login" requirement

License:MIT License


Languages

Language:Python 100.0%