Note python3 requirement
This commit is contained in:
parent
3d29e31803
commit
55f7e4727b
2 changed files with 8 additions and 3 deletions
|
@ -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:
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
import csv
|
||||
import os
|
||||
import sys
|
||||
|
|
Loading…
Add table
Reference in a new issue