How to get ISBN number from .mobi file with python
Is there any way of fetching the ISBN number from a .mobi book using python? Maybe there is a way of reading the .mobi files directely with python and search for 10 ints which is the ISBN number? if I open the mobi file with notepad i can find the number, but when i try to read the file I get a encoding error. Yes. Basically, you just need to parse the PalmDB file format. The ISBN is stored in the EXTH header field of type 104 . The Python PalmDB module I have linked above was somewhat immature when I wrote my Kindle collections manager, so I ended up implementing the relevant parts myself,