python,编写记录密码小工具

python,编写记录密码小工具,第1张

#!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就可以快捷复制自己的密码到【剪切板】。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/578754.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-11
下一篇 2022-04-11

发表评论

登录后才能评论

评论列表(0条)

保存