Skip to content
Snippets Groups Projects
__init__.py 525 B
Newer Older
"""
Python module for extracting attribute from Archive Extractor Device.
"""

__version__ = "AUTOVERSIONREPLACE"

__all__ = ["Access", ]

##########################################################################
###                  Module private variables                          ###
##########################################################################
# Tuple of extractor for HDB and TDB
global _extractors
_extractors = (None, None)

# Tuple for attribute tables
global _AttrTables
_AttrTables = (None, None)