def __init__()

in keyper/__init__.py [0:0]


    def __init__(self, path: str, password: str, *, is_temporary: bool = False) -> None:
        log.debug("Creating new keychain: %s (is_temporary=%s)", path, str(is_temporary))
        self.path = os.path.realpath(path)
        self.password = password
        self.is_temporary = is_temporary