从python访问Keepass

2024-05-28 19:33:50 发布

您现在位置:Python中文网/ 问答频道 /正文

在尝试使用Python访问Keepass数据库时,我一直遇到Unicode错误。我正在尝试git集线器中的基本代码。下面是命令提示符的输出。我试过了数据库编码以及数据库解码也。在

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)

Tags: inpy数据库dblibpackageslinesite

热门问题