Google Books downloader for Ubuntu

35,418

Solution 1

There is a Python program called PySheng than did the job for me.

It's available on Github at https://github.com/tokland/pysheng

You can run the following commands to install it.

git clone https://github.com/tokland/pysheng
cd pysheng
sudo python setup.py install

Now PySheng will be available from the Termainl.

You can run pysheng-gui and pysheng from the terminal for the GUI and terminal version respectively.

pysheng-gui

PySheng GUI for downloading from Google Books

Solution 2

Thanks to @Glutanimate for his comment to the OP.

getxbook makes a good case for why it is the best option available. I just installed it and used it to download this book with success.

getxbook comes with installation instructions (in the INSTALL file). Once installed, it is run as follows:

$ getxbookgui

Alternatively, the command

$ getgbook book-id

can be used. (The book ID is in the URL for the book. For example, the ID for the book I downloaded is 3pK1-LxtFV4C.)

If only a subset of pages is desired, use

$ getgbook -n book-id

And then enter the pages you want, one at a time, e.g.:

$ getgbook -n book-id
262

When I said the book was downloaded with success, I wasn't being totally honest. For some reason, getxbook missed a few pages that were available in the preview. To get these, I followed these instructions.

Note that the book is downloaded to a sub-directory of the current directory named with the book ID. It is downloaded as a set of .png and/or .jpg files, one per page. These can be converted to .pdf format as follows (after converting the .jpg files to .png files one by one):

$ convert *.png book.pdf

Note that if you intend to print this .pdf on paper, you may need to resize some of the individual images (so that they're all roughly the same size) before converting to the .pdf. I used gimp to do this.

Share:
35,418

Related videos on Youtube

APLUS
Author by

APLUS

I believe in : Positive Thinking Sharing Knowledge

Updated on September 18, 2022

Comments

  • APLUS
    APLUS over 1 year

    I want to download free Google books in pdf format.

    Is there any Google Books downloading tool available for Ubuntu?

    • Admin
      Admin almost 10 years
      duplicate question , maybe this answer could help askubuntu.com/questions/339927/download-google-books
    • Admin
      Admin almost 10 years
      @HanyAlsamman Not exact duplicate because I clarified "downloader" and however askubuntu.com/q/339927 is closed as unclear!
    • Admin
      Admin almost 10 years
      Two other solutions I found a while ago: pysheng and getxbook. I would write a proper answer but I've never tried these out. So if you feel up to task, please feel free to include these tools in your own post.
    • Admin
      Admin almost 9 years
      @HanyAlsamman that answer doesn't come close to answering this OP's question. and the tutorial you've linked to has a downloader that works only on windows and mac OSes.
    • Admin
      Admin over 2 years
      pysheng only downloads the 35 first pages, no matter how many pages does the book have. I don't know if this is a limitation imposed by google or by pysheng.
  • Admin
    Admin over 7 years
    According to pysheng/readme.md, the correct command for installation (and the one that worked for me) is sudo python setup.py install. - I have edited accordingly.
  • Admin
    Admin over 7 years
    It is installed by default in the home directory. But then it can be moved anywhere and launched by executing /pysheng/bin/pysheng-gui. Path to that could be added into a launcher (desktop file) put in ~/.local/share/applications.
  • creative
    creative about 7 years
    import gtk.glade ImportError: No module named glade Its giving this error. I tried to follow the steps in git hub but I am unable to find /usr/share/pysheng/main.glade in line 362. In fact in the whole script there is no such line.
  • Max N
    Max N almost 7 years
    make: *** No rule to make target 'util.h', needed by 'getgbook.o'. Stop. PySheng worked for me instead.
  • Praveen
    Praveen over 5 years
    @Hirak Try this: sudo apt-get install git python-appindicator python-xdg python-pexpect python-gconf python-gtk2 python-glade2 libxxf86vm1
  • Jason
    Jason almost 4 years
    you can use torify to assist downloading more pages on books that have a page download limit: "torify getgbook book-id"
  • Jason
    Jason almost 4 years
    The instructions to use chrome dev tools to download individual pages is out of date and no longer seems to work.