# san -- unzip --delteimport osimport shutildef scan_file(): files = os.listdir() for f in files: if f.endswith('.zip') return fdef unzip_it(f): folder_name = f.split('.')[0] target_path = './' + folder_name os.makedirs(target_path) shutil.unpack_archive(f,target_path)def delte(f): os.remove(f)while True: zip_file = scan_file() if zip_file: unzip_it(zip_file) delte(zip_file)