| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/passpy-stubs/ |
Upload File : |
from _typeshed import StrPath
from collections.abc import Iterator
from re import Match
class Store:
def __init__(
self,
gpg_bin: str = "gpg2",
git_bin: str = "git",
store_dir: str = "~/.password-store",
use_agent: bool = True,
interactive: bool = False,
verbose: bool = False,
) -> None: ...
def __iter__(self) -> Iterator[str]: ...
def is_init(self) -> bool: ...
def init_store(self, gpg_ids: None | str | list[str], path: StrPath | None = None) -> None: ...
def init_git(self) -> None: ...
def git(self, method: str, *args: object, **kwargs: object) -> None: ...
def get_key(self, path: StrPath | None) -> str | None: ...
def set_key(self, path: StrPath | None, key_data: str, force: bool = False) -> None: ...
def remove_path(self, path: StrPath, recursive: bool = False, force: bool = False) -> None: ...
def gen_key(
self, path: StrPath | None, length: int, symbols: bool = True, force: bool = False, inplace: bool = False
) -> str | None: ...
def copy_path(self, old_path: StrPath, new_path: StrPath, force: bool = False) -> None: ...
def move_path(self, old_path: StrPath, new_path: StrPath, force: bool = False) -> None: ...
def list_dir(self, path: StrPath) -> tuple[list[str], list[str]]: ...
def iter_dir(self, path: StrPath) -> Iterator[str]: ...
def find(self, names: None | str | list[str]) -> list[str]: ...
def search(self, term: str) -> dict[str, list[tuple[str, Match[str]]]]: ...