:py:mod:`dissect.target.loaders.tar` ==================================== .. py:module:: dissect.target.loaders.tar Module Contents --------------- Classes ~~~~~~~ .. autoapisummary:: dissect.target.loaders.tar.TarLoader Attributes ~~~~~~~~~~ .. autoapisummary:: dissect.target.loaders.tar.log dissect.target.loaders.tar.ANON_FS_RE .. py:data:: log .. py:data:: ANON_FS_RE .. py:class:: TarLoader(path: Union[pathlib.Path, str], **kwargs) Bases: :py:obj:`dissect.target.loader.Loader` Load tar files. .. py:method:: detect(path: pathlib.Path) -> bool :staticmethod: Detects wether this ``Loader`` class can load this specific ``path``. :param path: The target path to check. :returns: ``True`` if the ``path`` can be loaded by a ``Loader`` instance. ``False`` otherwise. .. py:method:: is_compressed(path: Union[pathlib.Path, str]) -> bool .. py:method:: map(target: TarLoader.map.target) -> None Maps the loaded path into a ``Target``. :param target: The target that we're mapping into.