Newer
Older
thu-learn-downloader-optimized / thu_learn_downloader / login / auto.py
@liblaf liblaf on 10 Oct 2023 358 bytes fix: fix SSL error
from . import bitwarden


def username() -> str:
    try:
        username: str = bitwarden.username()
        if username:
            return username
    except:
        pass
    return ""


def password() -> str:
    try:
        password: str = bitwarden.password()
        if password:
            return password
    except:
        pass
    return ""