Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 391 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 391 Bytes

KeePassHTTP-Python

python class to comminutate with keepass

Prerequisite

pip install pyyaml pycrypto

Known Issue

  • Python3 import error on Windows
ImportError: No module named 'winrandom'
  • Solution Fix it in file $(Python)\Lib\site-packages\pycrypto-2.6.1-py3.5-win32.egg\Crypto\Random\OSRNG\nt.py
- import winrandom
+ from .import winrandom