Module glasswall.determine_file_type.classes
Expand source code
class FileTypeEnum:
""" Base class for all file type enumerations. """
pass
class FileTypeEnumError(FileTypeEnum, Exception):
""" Enumerations that correspond to an error. """
pass
class FileTypeEnumSuccess(FileTypeEnum):
""" Enumerations that correspond to a file type. """
pass
Classes
class FileTypeEnum
-
Base class for all file type enumerations.
Expand source code
class FileTypeEnum: """ Base class for all file type enumerations. """ pass
Subclasses
class FileTypeEnumError (*args, **kwargs)
-
Enumerations that correspond to an error.
Expand source code
class FileTypeEnumError(FileTypeEnum, Exception): """ Enumerations that correspond to an error. """ pass
Ancestors
- FileTypeEnum
- builtins.Exception
- builtins.BaseException
Subclasses
class FileTypeEnumSuccess
-
Enumerations that correspond to a file type.
Expand source code
class FileTypeEnumSuccess(FileTypeEnum): """ Enumerations that correspond to a file type. """ pass
Ancestors
Subclasses
- ft_7zip
- ft_bin
- ft_bmp
- ft_bzip2
- ft_cfb
- ft_coff
- ft_compobj
- ft_doc
- ft_doccore
- ft_docsummary
- ft_docx
- ft_docxPackageInCfb
- ft_elf
- ft_emf
- ft_equationnative
- ft_fi
- ft_gif
- ft_gzip
- ft_interchangePackage
- ft_jpeg
- ft_json
- ft_macho
- ft_mp2
- ft_mp3
- ft_mp4
- ft_mpg
- ft_office
- ft_ooxml
- ft_opc
- ft_pdf
- ft_pdf_core2
- ft_pe
- ft_picturestream
- ft_png
- ft_ppt
- ft_pptcore
- ft_pptx
- ft_pptxPackageInCfb
- ft_printersettings
- ft_rar
- ft_rtf
- ft_svg
- ft_tar
- ft_tiff
- ft_vbamacros
- ft_wav
- ft_webp
- ft_wmf
- ft_xls
- ft_xlscore
- ft_xlsx
- ft_xlsxPackageInCfb
- ft_xml
- ft_zip