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.
19 lines
508 B
Python
19 lines
508 B
Python
12 years ago
|
import subprocess
|
||
|
import os
|
||
|
|
||
|
def gmail_password():
|
||
|
path = os.environ['HOME'] + "/.gmail_password.gpg"
|
||
|
args = ["gpg", "-d", path]
|
||
|
try:
|
||
|
return subprocess.check_output(args).rstrip()
|
||
|
except subprocess.CalledProcessError:
|
||
|
return "".strip()
|
||
|
|
||
|
def iocom_password():
|
||
|
path = os.environ['HOME'] + "/.iocom_password.gpg"
|
||
|
args = ["gpg", "-d", path]
|
||
|
try:
|
||
|
return subprocess.check_output(args).rstrip()
|
||
|
except subprocess.CalledProcessError:
|
||
|
return "".strip()
|