Skip to content

Latest commit

 

History

History
62 lines (36 loc) · 1.4 KB

File metadata and controls

62 lines (36 loc) · 1.4 KB

Input

Checkpasswords Index / Checkpasswords / Io / Input

Auto-generated documentation for checkpasswords.io.input module.

passImport

Show source in input.py:14

Use pass_import to convert an ambiguous source file to a list[Credentials].

Arguments


  • path str - path to password source file
  • manager str, optional - specify a pasword manager if pass_import fails to identify it. Defaults to None.

Returns


  • list[Credentials] - list of credentials used by the rest of checkpasswords

Signature

def passImport(path: str, manager: str | None = None) -> list[Credentials]: ...

See also

transformPass

Show source in input.py:55

Convert pass_import representation to checkpasswords representation (list[Credentials]).

:param dict list[dict]: pass_import representation

Returns

Type: list[Credentials] checkpasswords representation

Signature

def transformPass(data: list[dict]) -> list[Credentials]: ...

See also