def __init__(self, database, store_original=False): """ store_original - stores xml files in the database or not """ ConnectDB.__init__(self, database) InventoryRetrieve.__init__(self, self.conn, self.cursor) RawStore.__init__(self, self.conn, self.cursor) self.database = database self.store_original = store_original
def __init__(self, database): ConnectDB.__init__(self, database) InventoryRetrieve.__init__(self, self.conn, self.cursor) RawStore.__init__(self, self.conn, self.cursor)