gau1991
10 years ago
1 changed files with 15 additions and 0 deletions
@ -0,0 +1,15 @@ |
|||
"""EasyEngine extarct core classes.""" |
|||
|
|||
|
|||
class EEExtract(): |
|||
"""Method to extract from tar.gz file""" |
|||
|
|||
def extract(file, path): |
|||
try: |
|||
tar = tarfile.open(file) |
|||
tar.extractall(path=path) |
|||
tar.close() |
|||
return True |
|||
except tarfile.TarError as e: |
|||
print("Unable to extract file "+file) |
|||
return False |
Loading…
Reference in new issue