Spaces:
Runtime error
Runtime error
File size: 438 Bytes
364ca9d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import zipfile
class FileProcess:
ALLOWED_EXTENSIONS = {'zip'}
@staticmethod
def allowed_file(filename):
return '.' in filename and \
filename.rsplit('.', 1)[1].lower() in FileProcess.ALLOWED_EXTENSIONS
@staticmethod
def extract_zip(filepath):
path_ke_folder = './static/dataset/'
with zipfile.ZipFile(filepath, 'r') as zip_ref:
zip_ref.extractall(path_ke_folder)
|