#!python3
#pw.py an insecure password locker program.
import sys,pyperclip
Dict={'email':'w111',
'blog':'111',
'luggage':'123456'
}
if len(sys.argv)<2:
print('usage: python pw.py [account] ---copy account password')
sys.exit()
account=sys.argv[1]
if account in Dict.keys():
#pyperclib复制密码
pyperclip.copy(Dict[account])
print('password for' + account +' copied to clipboard')
else :
print('no account for '+account)
----------------------------------------------------------
可以环境变量设置一个AA.bat的文件的目录,对应内容为:
python E:\learnSomeThing\learnSth\CodeLanguage\Python\code\pw.py %*
那么当输入AA就可以快捷复制自己的密码到【剪切板】。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)