Refactored
This commit is contained in:
21
wo/core/extract.py
Normal file
21
wo/core/extract.py
Normal file
@@ -0,0 +1,21 @@
|
||||
"""WordOps Extract Core """
|
||||
import tarfile
|
||||
import os
|
||||
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
|
||||
Reference in New Issue
Block a user