You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
254 B
Python
10 lines
254 B
Python
12 years ago
|
import subprocess
|
||
|
|
||
12 years ago
|
def gmail_password():
|
||
12 years ago
|
path = "/Users/dustinswan/.gmail_password.gpg"
|
||
|
args = ["gpg", "-d", path]
|
||
12 years ago
|
try:
|
||
12 years ago
|
return subprocess.check_output(args).rstrip()
|
||
12 years ago
|
except subprocess.CalledProcessError:
|
||
|
return "".strip()
|