├── .gitignore ├── LICENSE.txt ├── README.md ├── keepassc.py ├── python └── keepass │ ├── __init__.py │ ├── cli.py │ ├── header.py │ ├── hier.py │ ├── infoblock.py │ └── kpdb.py ├── setup.py └── tests ├── test_cli.py ├── test_de.py ├── test_hier.py └── test_io.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/python-keepass/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/python-keepass/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/python-keepass/HEAD/README.md -------------------------------------------------------------------------------- /keepassc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/python-keepass/HEAD/keepassc.py -------------------------------------------------------------------------------- /python/keepass/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/python-keepass/HEAD/python/keepass/__init__.py -------------------------------------------------------------------------------- /python/keepass/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/python-keepass/HEAD/python/keepass/cli.py -------------------------------------------------------------------------------- /python/keepass/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/python-keepass/HEAD/python/keepass/header.py -------------------------------------------------------------------------------- /python/keepass/hier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/python-keepass/HEAD/python/keepass/hier.py -------------------------------------------------------------------------------- /python/keepass/infoblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/python-keepass/HEAD/python/keepass/infoblock.py -------------------------------------------------------------------------------- /python/keepass/kpdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/python-keepass/HEAD/python/keepass/kpdb.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/python-keepass/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/python-keepass/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/python-keepass/HEAD/tests/test_de.py -------------------------------------------------------------------------------- /tests/test_hier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/python-keepass/HEAD/tests/test_hier.py -------------------------------------------------------------------------------- /tests/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/python-keepass/HEAD/tests/test_io.py --------------------------------------------------------------------------------