7 lines
193 B
Python
7 lines
193 B
Python
import keyring
|
|
|
|
# keyring.get_password(service_name, username)
|
|
value = keyring.get_password("openvpn-totp-offad", "static")
|
|
print(value) # None, если ничего не сохранено
|
|
|