wiithon.cli.iso module

wiithon.cli.iso.iso_info(iso, as_json=False)[source]

Display metadata from a Wii ISO disc header.

Parameters:
  • iso (Path)

  • as_json (bool, default: False)

Return type:

None

wiithon.cli.iso.iso_list(iso, partition_type=None, tree=False, as_json=False)[source]

List all files from a partition

Parameters:
  • iso (Path)

  • partition_type (Optional[PartTypeChoice], default: None)

  • tree (bool, default: False)

  • as_json (bool, default: False)

Return type:

None

wiithon.cli.iso.iso_extract(iso, dest, partition_type=None, file=None)[source]

Extract all files from a partition

Parameters:
Return type:

None

wiithon.cli.iso.iso_cat(iso, path, partition_type=None, limit=512)[source]

Print one file from a partition: hexdump on a terminal, raw bytes when piped

Parameters:
  • iso (Path)

  • path (str)

  • partition_type (Optional[PartTypeChoice], default: None)

  • limit (int, default: 512)

Return type:

None