First commit

This commit is contained in:
Marco Raber 2020-08-24 16:37:18 +02:00
commit 24b609214f
2 changed files with 28 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
keys

27
pythonTOTP-dmenu Executable file
View File

@ -0,0 +1,27 @@
#!/bin/python3
import dmenu
import pyotp
import clipboard
keysfile=open('keys', 'r')
keys=[]
names=[]
alllines=keysfile.readlines()
for i in range(0, len(alllines)):
if i%2==0:
# thisname=alllines[i]
# thisname=thisname[:-2]
names.append(alllines[i][:-1])
# names.append(thisname)
else:
keys.append(alllines[i][:-1])
print(names)
chose=dmenu.show(names,case_insensitive=True, prompt='Search:')
print(chose)
for i in range(0,len(keys)):
if chose==names[i]:
totp = pyotp.TOTP(keys[i])
print(totp.now())
clipboard.copy(totp.now())
else:
continue