""" Unpacks an `All-in-One WP Migration` package. """ import collections import errno import os import struct import sys class Ai1wmUnpacker(tuple): """ Unpacks an `All-in-One WP Migration` package. """ SIZE = 4377 EOF = b'\x00' * SIZE _Location = collections.namedtuple('_Location', ['offset', 'size']) _LOC_NAME = _Location(0, 255) # File name _LOC_SIZE = _Location(255, 14) # File size _LOC_TIME = _Location(269, 12) # Last modified time _LOC_PATH = _Location(281, 4096) # File path def __new__(cls, path=None, name=None, size=None, time=None): """ Returns a new instance of the object. """ if path or name or size or time: if not isinstance(path, str) or path == '': raise ValueError(' must be a nonempty string') if not isinstance(name, str) or name == '': raise ValueError(' must be a nonempty string') if not isinstance(size, int) or size < 0: raise ValueError(' must be a non-negative integer') if not isinstance(time, int) or time < 0: raise ValueError('