Python で Keepass データベースにアクセスしようとすると、Unicode エラーが発生し続けます。私はgitハブから基本的なコードを試しています。以下は、コマンドプロンプトからの出力です。db.encode と db.decode も試しました。
C:\Python27>python
Python 2.7.12 (v2.7.12:d33e0cf91556, Jun 27 2016, 15:19:22) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from keepass import kpdb
>>> db = kpdb.Database('C:\\Python27\\k.kdb','test')
>>> print db
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python27\lib\site-packages\keepass\kpdb.py", line 154, in __str__
] ret += map(str,self.entries)
File "C:\Python27\lib\site-packages\keepass\infoblock.py", line 80, in __str__
return '\n'.join(ret)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xbb in position 14: ordinal not in range(128)