 Re: How to remove DRM protection from B&N (Barnes & Noble) EPUB ebooks
The program is not working for me, am I doing anything wrong
First I got error "Could not locate B&N Reader installation"
I edited the file and changed a variable and that fixed the error
#BN_APPDATA_DIR = r'Barnes & Noble\DesktopReader'
BN_APPDATA_DIR = r'Barnes & Noble\BNDesktopReader'
Then I got the error "Problem locating B&N Reader DB". Looking at the program it was looking for ClientAPI_*.db. Such file did not exists on my PC but there was a file "C:\Users\XXXXXXX\AppData\Roaming\Barnes & Noble\BNDesktopReaderClientAPI.db".
I edited the program again and changed one more line
# dbpath = glob.glob(os.path.join(bndir, 'ClientAPI_*.db'))
dbpath = glob.glob(os.path.join(bndir, 'ClientAPI*.db'))
Now I am getting following error "B&N User Key not found. Unexpected DB format?"
I have Barnes and Noble reader on my Windows 7 desktop. ANy help?
|