The popular open-source contract for web professionals by Stuff & Nonsense
- Originally published: 23rd December 2008
- Revised date: March 15th 2016
- Original post
| #EXTM3U | |
| #EXTINF:-1,Digitally Imported - Ambient | |
| http://pub1.diforfree.org:8000/di_ambient_hi | |
| #EXTINF:-1,Digitally Imported - Big Room House | |
| http://pub1.diforfree.org:8000/di_bigroomhouse_hi | |
| #EXTINF:-1,Digitally Imported - Breaks | |
| http://pub1.diforfree.org:8000/di_breaks_hi |
| #!/bin/env python | |
| """Import keepass 1.x compatible password database into GNU pass | |
| http://www.passwordstore.org/. | |
| Uses the kppy (https://pypi.python.org/pypi/kppy) library to open and decode | |
| the database. Python 2.7+ and Python 3.x compatible. Best results with Python3 | |
| for any unicode issues. | |
| Usage: keepass2pass.py <keepass db> [--keyfile <key file if necessary>] | |
| Based on http://git.zx2c4.com/password-store/tree/contrib/importers/keepassx2pass.py |