This repository has been archived by the owner on Nov 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpw.py
56 lines (51 loc) · 1.95 KB
/
pw.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# https://qiita.com/kaka__non/items/81b55df2c90ae829db6b
#! python3
# pw.py - パスワードをクリップボードにコピー
# Usage:
# pw.py <name>
# 登録されている場合、パスワードをクリップボードにコピー
# 新しいURLの場合、パスワードを生成
import shelve,sys,random,re,string
import pyperclip as py
name=sys.argv[1]
pw_shelf=shelve.open('pw')
def strength_test(pw):#pwが強ければTrue,そうでなければFalse
test_A=re.search(re.compile(r'[A-Z]+'),pw)
test_a=re.search(re.compile(r'[a-z]+'),pw)
test_0=re.search(re.compile(r'[0-9]+'),pw)
test_symbol=re.search(re.compile('[!-/:-@[-`{-~]+'),pw)
if test_A and test_a and test_0 and test_symbol:
return True
else:
return False
def display_list():#登録されているnameを出力
name_list=list(pw_shelf.keys())
name_list.sort(key=str.lower)
print('アルファベット順'.center(20,'-'))
for k in name_list:
print(k)
print('-'*28)
if sys.argv[1]=='list':
display_list()
sys.exit()
if name in pw_shelf.keys():
print(name+'のパスワードを確認しました')
py.copy(pw_shelf[name])
print('パスワードをコピーしました')
else:
print(name+'のパスワードが登録されていません\nパスワードを生成して登録しますか?(y/n)')
yn=input()
if yn=='y':
print('パスワードを生成します\nパスワードの文字数を入力してください')
character_num=int(input())
while True:
str=string.ascii_letters+string.digits+string.punctuation
pw_lst=random.sample(str,character_num)
pw=''.join(pw_lst)
if strength_test(pw):#強いパスワードの場合ループを抜ける
py.copy(pw)
pw_shelf[name]=pw
print('パスワードの登録とコピーが完了しました')
break
else:
print('exit')