Files
WPIQ/wo/core/extract.py
2019-09-04 20:36:15 +02:00

23 lines
578 B
Python

"""WordOps Extract Core """
import os
import tarfile
from wo.core.logging import Log
class WOExtract():
"""Method to extract from tar.gz file"""
def extract(self, file, path):
"""Function to extract tar.gz file"""
try:
tar = tarfile.open(file)
tar.extractall(path=path)
tar.close()
os.remove(file)
return True
except tarfile.TarError as e:
Log.debug(self, "{0}".format(e))
Log.error(self, 'Unable to extract file \{0}'.format(file))
return False