Note python3 requirement

This commit is contained in:
Austen Adler 2018-08-15 00:59:11 -04:00
parent 3d29e31803
commit 55f7e4727b
2 changed files with 8 additions and 3 deletions

View File

@ -1,6 +1,11 @@
# pass2csv
Needs [python-gnupg](https://pypi.python.org/pypi/python-gnupg). Run with path
to password store as argument.
Needs [python-gnupg](https://pypi.python.org/pypi/python-gnupg) and python3.
Run with path to password store as argument:
```
python3 -m pip install --user python-gnupg
python3 pass2csv.py ~/.password-store
```
There are two ways to export CSV data:

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import csv
import os
import sys